前提・実現したいこと
filterのように、指定のものを削除するのではなく、残したい。
発生している問題・エラーメッセージ
const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present']; const result = words.filter(word => word.length > 6); console.log(result);
上記で削除は出来るが、
const words = ['spray', 'limit', 'elite', 'exuberant', 'limit', 'present']; const result = words.filter(word => word = 'limit'); console.log(result);
次ので抽出はできない。
試したこと
limit以外のものを削除しようとしたが、適用されなかった。
const words = ['spray', 'limit', 'elite', 'exuberant', 'limit', 'present']; const result = words.filter(word => word != !'limit'); console.log(result);
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/09/24 09:11