Truthy & Falsy Values

What will this code output? const obj = { value: 0 }; console.log(obj.value ? 'truthy' : 'falsy');
Next Question (16/30)