From 8559c2aa014e39350a6e4e2571ca1fc25ff6d239 Mon Sep 17 00:00:00 2001 From: Pranjal Jain <24854511+yellowjacketcoder@users.noreply.github.com> Date: Fri, 3 Jun 2022 16:19:28 +0530 Subject: [PATCH] docs: Update Exponentiation opearator MDN link --- docs/src/_data/further_reading_links.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/src/_data/further_reading_links.json b/docs/src/_data/further_reading_links.json index da747fe729fb..1ace5fff6e2e 100644 --- a/docs/src/_data/further_reading_links.json +++ b/docs/src/_data/further_reading_links.json @@ -684,5 +684,12 @@ "logo": "//thomas.tuerke.net/images/tmtlogo.ico", "title": "Coding in Style", "description": "Thomas M. Tuerke topical weblog" + }, + "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation": { + "domain": "developer.mozilla.org", + "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation", + "logo": "https://developer.mozilla.org/favicon-48x48.cbbd161b.png", + "title": "Exponentiation (**) - JavaScript | MDN", + "description": "The exponentiation operator (**) returns the result of raising the first operand to the power of the second operand. It is equivalent to Math.pow, except it also accepts BigInts as operands." } }