From 28bcd0d7d4a2e936b993f0997419b4619d6cb6c4 Mon Sep 17 00:00:00 2001 From: nintendoit <91181094+nintendoit@users.noreply.github.com> Date: Sun, 12 Jun 2022 19:57:22 +0530 Subject: [PATCH] Fix link to MDN bitwise operator docs in (2.18)Javascript specials The permalink to bitwise operator was incorrect.The link before took to the correct page but not to bitwise operator docs subheading. --- 1-js/02-first-steps/18-javascript-specials/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/18-javascript-specials/article.md b/1-js/02-first-steps/18-javascript-specials/article.md index 97496241..016214e3 100644 --- a/1-js/02-first-steps/18-javascript-specials/article.md +++ b/1-js/02-first-steps/18-javascript-specials/article.md @@ -144,7 +144,7 @@ Assignments : There is a simple assignment: `a = b` and combined ones like `a *= 2`. Bitwise -: Bitwise operators work with 32-bit integers at the lowest, bit-level: see the [docs](mdn:/JavaScript/Guide/Expressions_and_Operators#Bitwise) when they are needed. +: Bitwise operators work with 32-bit integers at the lowest, bit-level: see the [docs](mdn:/JavaScript/Guide/Expressions_and_Operators#bitwise_operators) when they are needed. Conditional : The only operator with three parameters: `cond ? resultA : resultB`. If `cond` is truthy, returns `resultA`, otherwise `resultB`.