我想過濾一個數組的反應。這裏是我的代碼:反應過濾器eslint錯誤:意外的塊語句周圍的箭頭主體
resultArray = myArray.filter((item) => {
return item.children.length === 0;
});
這給了我一個eslint錯誤: Unexpected block statement surrounding arrow body
所以我換了大括號括號:
resultArray = myArray.filter((item) => (
return item.children.length === 0;
));
這給了我一個意外的標記錯誤而突出return
。
什麼是正確的方法來做到這一點?
接受這一個作爲答案,因爲其他人仍然給我一個Eslint錯誤。可能是因爲我的皮毛配置。 –