冠修复与根管同步治疗隐裂牙牙髓病的疗效
ID:80
View protection:Public
Updated time:2021-06-17 16:37:25 Views:1243
口头报告
Abstract
A function's last parameter can be prefixed with ... which will cause all remaining (user supplied) arguments to be placed within a "standard" javascript array. Only the last parameter can be a "rest parameter".
function myFun(a, b, ...manyMoreArgs) {
console.log("a", a);
console.log("b", b);
console.log("manyMoreArgs", manyMoreArgs);
}
myFun("one", "two", "three", "four", "five", "six");
// Console Output:
// a, one
// b, two
// manyMoreArgs, [three, four, five, six]
Keywords
Pipe-Jacking Shallow-buried
Post comments