1.如何给方法的参数指定默认值
function test(name:string,age:number,sex:string='man'){ console.log(name) console.log(age) console.log(sex) } test('张三',18)
1.可选参数
参数后面带?代表此参数是可选的,没有传就是undefined
function test(name:string,age?:number,sex:string='man'){ console.log(name) console.log(age) console.log(sex) } test('张三')
必填的参数不能在可选参数的后面
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接