Operators
Operators perform arithmetic, comparison, and logical operations on values.
JAVASCRIPT
let a = 10, b = 3;
console.log(a + b, a ** b, a > b);Try it Yourself
JavaScript Tutorial
Source: Programming with Mosh
Operators perform arithmetic, comparison, and logical operations on values.
let a = 10, b = 3;
console.log(a + b, a ** b, a > b);