From 892ec7f81be77c949cff5c745409c6ef85e39871 Mon Sep 17 00:00:00 2001 From: Dana Ottaviani Date: Sat, 3 Nov 2018 08:49:20 -0400 Subject: [PATCH] Add "modulo" name in remainder section (#20624) * Update index.md I refer to it as "modulus" so I thought it would be best to add another name for it. * markdownize links add modulus to to sentence on 75 --- .../english/javascript/arithmetic-operation/index.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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)