参数默认值
程序员文章站
2024-02-20 19:23:40
...
var myname: string = "Peter";
function test(a: string, b: string, c: string = "Jack") {
console.log(a);
console.log(b);
console.log(c);
}
test("xxx", "yyy", "zzz");
test("xxx","yyy")
有默认值的参数要写在最后
上一篇: java annotation Java
下一篇: ES6之Reflect