參數/引數 ; function plus(a, b) { ; if(arguments.length != 2) { ; throw new Error('必須有兩個引數'); ; return a + b; ; console.log(plus(10, 20)); // ...
確定! 回上一頁