/*
Logical Or ||
-- Null + Undefined + Any Falsy Value
Nullish Coalescing Operator ??
-- Null + Undefined
*/
console.log(Boolean(100));
console.log(Boolean(-100));
console.log(Boolean(0));
console.log(Boolean(""));
console.log(Boolean(null));
let price = 0;
console.log(`The Price Is ${price || 200}`);
console.log(`The Price Is ${price ?? 200}`);
You have not completed all required lessons and assessments.