Essential JavaScript Interview Questions Day130
Today #Day130 of #365DaysOfCode, Learning Essential JavaScript Interview Questions.
27. What is the output of the following code, and why?
console.log(1 < 2 < 3);
console.log(3 > 2 > 1);
The first statement returns true which is as expected.
The se...
dheerajy1.hashnode.dev2 min read