From 5461c08248e789b434370531f672d8ca3204bda3 Mon Sep 17 00:00:00 2001 From: LevoratoJoao Date: Mon, 19 Aug 2024 00:10:14 -0300 Subject: [PATCH] Fix link from Knowledge Check in Variables and Operators --- foundations/javascript_basics/variables_and_operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundations/javascript_basics/variables_and_operators.md b/foundations/javascript_basics/variables_and_operators.md index d4ba136ba14..8f67df9fb85 100644 --- a/foundations/javascript_basics/variables_and_operators.md +++ b/foundations/javascript_basics/variables_and_operators.md @@ -113,7 +113,7 @@ The following questions are an opportunity to reflect on key topics in this less - [What rules should you follow when naming variables?](https://javascript.info/variables#variable-naming) - [What happens when you add numbers and strings together?](https://javascript.info/operators#string-concatenation-with-binary) - [How does the Modulo (%), or Remainder, operator work?](https://javascript.info/operators#remainder) -- [Explain the difference between `==` and `===`.](https://www.w3schools.com/js/js_numbers.asp) +- [Explain the difference between `==` and `===`.](https://www.w3schools.com/js/js_operators.asp) - [When would you receive a `NaN` result?](https://www.w3schools.com/js/js_numbers.asp) - [How do you increment and decrement a number?](https://javascript.info/operators#increment-decrement) - [Explain the difference between prefixing and postfixing increment/decrement operators.](https://javascript.info/operators#increment-decrement)