配列から文字列を削除する必要があります。この関数があります。 これはいくつかのランダムなテストを行い、結果を返します。配列からランダムな文字列を削除する、JavaScript
"Expected: '[1, 2]', instead got: '[1, 2, \'a\', \'b\']'
Expected: '[1, 0, 15]', instead got: '[1, \'a\', \'b\', 0, 15]'
Expected: '[1, 2, 123]', instead got: '[1, 2, \'aasf\', \'1\', \'123\',
123]'
Expected: '[]', instead got: '[\'a\', \'b\', \'1\']'
Expected: '[1, 2]', instead got: '[1, 2, \'a\', \'b\']' "
を行います方法です。あなたの数値がすべて整数であれば、 'array.filter(Number.isInteger)'を使ってください。 –