JavaScript Tutorial

JavaScript Operators

Operators

Operators perform arithmetic, comparison, and logical operations on values.

let a = 10, b = 3;
console.log(a + b, a ** b, a > b);
Try it Yourself