Alert!! Operators are Functions in Javascript ??
An operator is actually a special function that are written in your code.
Generally, operators take two parameters and return one result.
Let's look at an example.
var a = 3 + 4;
console.log(a); //7
Quite easy to guess what you will see on screen
Sev...
msabir.hashnode.dev2 min read