9 types of falsy values in JavaScript
You might have already come across (or may come across) the question below in a JavaScript/Frontend/Web Engineer interview.
What are the possible outcomes of the given code snippet?
function greet(value) {
if (value) {
return "Hello, Worl...
blogs.amitgurbani.com2 min read