2 回答

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超7個(gè)贊
const post = text => (
....
)
此箭頭函數(shù)需要括號(hào)中的表達(dá)式或單個(gè)語句。調(diào)用該函數(shù)時(shí)將返回表達(dá)式的結(jié)果。不需要return明確地寫。
例子:
const isOdd = num => ( num % 2 == 1 );
第二個(gè)箭頭函數(shù)需要一個(gè)函數(shù)體。如果不明確返回,undefined將被退回。
const post = text => {
....
}
例子:
const isOdd = num =>{
return num % 2 == 1;
}
在第一種形式中,你并不總是需要()around 表達(dá)式,但當(dāng)你返回一個(gè)對(duì)象文字時(shí)它是必需的。
const Point = (x,y) => {x,y};
console.log(Point(0,0)); //undefined
const Point = (x,y) => ({x,y});
console.log(Point(0,0)); //{ x: 1, y: 0 }

TA貢獻(xiàn)1874條經(jīng)驗(yàn) 獲得超12個(gè)贊
第一個(gè)箭頭函數(shù)表示返回一個(gè)值,(what is return) 第二個(gè)箭頭函數(shù)表示您想要定義的函數(shù){define your function} 以獲取更多描述,請(qǐng)遵循此示例:
const post = text => (text) // return text
const post2 = text =>{ //define your function
return (text)
}
console.log(post("hello post"));
console.log(post("hello post2"));
添加回答
舉報(bào)