Learning Ecma Script 6 - 005 - function Defaults
by victorrseloy
Babel + JSX
function withDefaults(a =1,b=2,c=3){
console.log(a,b,c)
}
withDefaults();
withDefaults(6,7);
withDefaults(undefined,4,5);
by victorrseloy
function withDefaults(a =1,b=2,c=3){
console.log(a,b,c)
}
withDefaults();
withDefaults(6,7);
withDefaults(undefined,4,5);