Arithmetic Operators in JavaScript.
There are 7 operations can be done in Arithmetic Operators. These are 1 . Addition ( + ) :- This operation gives you the Added value. See the below example. var a = 5 ; var b = 3 ; var c = a + b ; document.write(b); OUTPUT :- 8 2 . Subtraction (…
