這邊先簡單介紹前面有用到的函式陳述式和函式表達式
function numA(x) {
return x + x;
}
console(numA(3)); // 結果為 6
cont numB = function(x) {
return x + x;
}
console(numA(5); // 結果為 10
const numA = function(x) {
return x+x;
}
console.log(numA(5); 結果為 10
const numA = (x) => {
return x+x;
}
console.log(numA(5); // 結果為 10
const numA = (x, y) => {
return x+x+y;
}
console.log(numA(3, 6)); // 結果為 12
const numA = x => x+x;
console.log(numA(5); // 結果為 10
const numA = (x) => x+x;
console.log(numA(5); // 結果為 10
const test = () => console.log('安安!');
console.log(test()); //顯示安安
箭頭函式好像總算有點看懂了!
之前還有種這到底是什麼奇幻的語法,我的天R
每日學習進度一點一滴成長中,歡迎有任何問題傳訊息給我
我們下次見!