Skip to main content
0:02est. 2 min

Chapter 28- Default Values

Notes

Check
undefined || "hello" //hello
null || "hello" //hello
"" || "hello" //hello
Example 1
function greet(name) {
name = name || "tony"; //OR operator behaviour
console.log("hello "+name);
}
greet();