Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

关于js方法调用的问题,是否有类似这种写法 test(age='zhangsan',name=10);

$
0
0
function test(name,age){
	console.log(name,age);
}
test(age='zhangsan',name=10);

考虑到参数多的话需记住参数顺序,比较麻烦 现在想到的办法是修改函数的入口参数 改成如下代码

function test({name,age}){
	console.log(name,age);
}
test({age:'zhangsan',name:10});

请问还有别的方式吗?


Viewing all articles
Browse latest Browse all 14821

Trending Articles