欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

参数默认值

程序员文章站 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