ES6 函數擴展

函數在js裏是至關重要的一部分了,ES6裏也新增了一些函數方法,來看一下javascript { function test(x, y = 'world'){ console.log(x,y); } test('hello');// hello world test('hello','kill');//hello kill } ES6增長了函數參數默認值,能夠直接在聲明參數
相關文章
相關標籤/搜索