JavaScript Operators
JavaScript Operators
1. What Are Operators? ๐ค
An operator is a symbol that tells the program to perform an operation on values.
Example:
let result = 5 + 3;
Here:
5 and 3 โ operands
+ โ operator
T
javascriptoperators26.hashnode.dev4 min read