Truthy & Falsy Values

What will the following code return? let value = 0; value = value || 'default'; console.log(value);
Next Question (7/30)