0 / 60 seg.

What is the result of the following expression?

const value = undefined;
if (value) {
  console.log("Truthy");
} else {
  console.log("Falsy");
}