Operators
Assignment Operation
let name = "Mr. Park";Arithmetic Operation
Symbol
Operators
Comparison & Logical Operator
Related Readings
Last updated
let name = "Mr. Park";Last updated
// Arithmetic Examples:
let x = 10;
let y = 5;
console.log(x + y);
console.log(x - y);
console.log(x * y);
console.log(x / y);
console.log(x ** y);
console.log(x % y);
console.log(x++);
console.log(y--);15
5
50
2
100000
0
10
5