JavaScript 可选的函数参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 可选的函数参数相关的知识,希望对你有一定的参考价值。

function optionalArguments(a, /*optional*/b){
	if(!b){b = []};//If b isn't set, create an empty array
	//OR shorthand for this
	b = b || [];
	/*
	 * The OR operator looks to see if b is true, if it is it skips
	 * creating the Array. If b is false it creates the array. Not
	 * very readable.
	 */
}

以上是关于JavaScript 可选的函数参数的主要内容,如果未能解决你的问题,请参考以下文章

我如何使自己的JavaScript函数具有必需的参数?

你可以在 Typescript 函数中有可选的解构参数吗?

使用可选的位置参数定义 Julia 函数

JavaScript中数组的5种迭代方法

JavaScript箭头函数

Geolocation API JavaScript访问用户的当前位置信息