const array = [1, 2, 3, 4, 5]; const item = array.filter((x: number) => x === 3); const notItem = array.filter((x: number) => x !== 3); ...
確定! 回上一頁