Essential JavaScript Interview Questions Day123
Today #Day123 of #365DaysOfCode, Learning Essential JavaScript Interview Questions.
13. What will the code below output to the console and why?
console.log(1 + "2" + "2");
console.log(1 + +"2" + "2");
console.log(1 + -"1" + "2");
console.log(+"1" ...
dheerajy1.hashnode.dev2 min read