diff --git a/guide/english/javascript/arithmetic-operation/index.md b/guide/english/javascript/arithmetic-operation/index.md
index cccc71d414..eba792cf22 100644
--- a/guide/english/javascript/arithmetic-operation/index.md
+++ b/guide/english/javascript/arithmetic-operation/index.md
@@ -18,7 +18,7 @@ JavaScript provides the user with five arithmetic operators: `+`, `-`, `*`, `/`
5 + "foo" // concatenates the string and the number and returns "5foo"
"foo" + "bar" // concatenates the strings and returns "foobar"
-_Hint:_ There is a handy increment(++) operator that is a great shortcut when you're adding numbers by 1.
+_Note:_ There is a handy [increment(++)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Increment) operator that is a great shortcut when you're adding numbers by 1.
## Subtraction
@@ -34,7 +34,7 @@ _Hint:_ There is a handy decrement(--) operator that is a great shortcut when you're subtracting numbers by 1.
+_Note:_ There is a handy [decrement(--)](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#Decrement) operator that is a great shortcut when you're subtracting numbers by 1.
## Multiplication
@@ -72,6 +72,8 @@ _Hint:_ There is a handy MDN.
+_!Important!_ You **cannot** perform any sort of operations on `Infinity`.
+
+Source: The amazing [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators)