JavaScript Tutorial – Arithmetic Operators
JavaScript operators are used to assign values, compare values, perform arithmetic operations, and more.
JavaScript Assignment Operators
Operator =
is an “assignment” operator, not an “equal to” operator. It assigns a value to its left operand based on the value of its right operand.
In the above example, the left operand is a variable called website and the right operand is a string WhatAboutHTML.
JavaScript Arithmetic Operators
Arithmetic operators are used to perform arithmetic on numbers (literals or variables). Common arithmetic operators are addition: +
, subtraction: -
, multiplication: *
and division: /
. See examples below.
How to add numbers in JavaScript – Addition operator
How to subtract numbers in JavaScript – Subtraction operator
How to multiply numbers in JavaScript – Multiplication operator
How to divide numbers in JavaScript – Division operator
How to Concatenate Strings in JavaScript
The addition operator can also be used to concatenate strings. You can also concatenate string and number, but the result will be a string.