不定參數(shù)
function test(a, ...b){
console.log(a);
console.log(b);
}
>test("echo","e","c","h");
< echo
["e", "c", "h"]
默認(rèn)參數(shù)
function animalSentence(animals2="tigers", animals3="bears") {
return
Lions and ${animals2} and ${animals3}! Oh my!;
}