1. Default Value of function param: The function displayTopicsPreview() raises an error on the very first line when called with no arguments. Let's fix that! function displayTopicsPreview( topics ){ var message = "There are currently " + topics.…
Default Function Parameters.md Default Function Parameters function getSum(a,b){ a = (a !== undefined) ? a : 1 ; b = (b !== undefined) ? b : 41; console.log(a+b); } getSum(); getSum(1,2); getSum (10); getSum(null, 6); In ES5,if the argument is not sp…
1函数参数的默认值 基本用法 在ES6之前,不能直接为函数的参数指定默认值,只能采用变通的方法. function log(x, y) { y = y || 'World'; console.log(x, y); } log('Hello') // Hello World log('Hello', 'China') // Hello China log('Hello', '') // Hello World 上面代码检查函数log的参数y有没有赋值,如果没有,则指定默认值为World.这种写法的…