99 JavaScript Tricky Questions | Must Have
Certainly! Here are 10 tricky JavaScript questions:
Variable Declaration and Initialization:
let x = 5, y = 10;
console.log(x + y);
What is the output, and why?
Truthy or Falsy:
console.log([] == false);
What is the output, and why?
Scope a...
revivecoding.hashnode.dev12 min read