Alert!! Operators are Functions in Javascript ??
Dec 2, 2022 · 2 min read · 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...
Join discussion