You can use every method: [1,2,3].every(function(el) { return !(el === 1); }); ES6 [1,2,3].every( el => el !== 1 )
確定! 回上一頁