Js Operators All — Free Javascript Tutorial
Learn Js Operators All in Javascript with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
TL;DR: Learn Js Operators All in Javascript with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated
Js Operators All in Javascript
Arithmetic: + - * / % ** (exponent). Modulo (%) gives remainder: 10 % 3 = 1.
Comparison: == (loose equal, ignores type), === (strict equal, checks type too). Always use ===. != loose, !== strict.
Logical: && (AND), || (OR), ! (NOT). Short-circuit: a && b returns b if a is truthy, a if a is falsy.
Assignment: = += -= *= /= **= ??= (nullish). Ternary: condition ? valueIfTrue : valueIfFalse.
Learn Js Operators All step by step with Syllab's free interactive Javascript tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Javascript course →