ES6默认参数的写法
2018-07-05 本文已影响0人
秋玄语道
<script>
{
//ES5\ES3 默认参数的写法
function f(x,y,z) {
if(y === undefined){
y =5;
}
if(z === undefined){
z =33;
}
return x+y+z
}
console.log(f(1,2))
}
{
//ES6 默认参数
function f(x,y =3, z = 33) {
return x+y+z
}
console.log(f(1,2))
}
</script>