Arithmetic operators are used to perform arithmetic on numbers.
Examples:
• var add = 2 + 3
• var substract = 5 - 2
• var multiply = 3 * 5
• var divide = 10 / 2
Console: