What is the result of the following expression?
const value = undefined;
if (value) {
console.log("Truthy");
} else {
console.log("Falsy");
}
What is the result of the following expression?
const value = undefined;
if (value) {
console.log("Truthy");
} else {
console.log("Falsy");
}