Destructuring Example 8
Destructuring objects - default values
by shravan
Babel + JSX
let person = { name: 'Shravan', age: 27, mobile: undefined };
let {name, email = 'no email provided', mobile = '0000000000' } = person;
console.log(name, email, mobile); //Shravan no email provided 0000000000