I am learning JS basics and I'm stuck on this super simple boolean inside if statement.
I just keep getting TRUE value from the if statement even when i change the value of the boolean to false: [
var status = false;
console.log(status);
if (status) {
console.log('true path taken');
} else {
console.log('false path taken');
};
Please help:)