Skip to main content
0:02est. 2 min

Chapter 21- Conceptual Aside (Operators)

Notes

#BIGWORD Operators - A special function that is syntactically (written) differently, Generally operators take 2 params and return result.
Example 1
var a = 1>2; //infix notation
console.log(a); //false
In the above example + sign is the operator it's the addition operator and its actually the function.