ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
# Array.prototype.filter() ``` const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present']; const **result = **words.filter(word => word.length > 6); console.log(result); // expected output: Array ["exuberant", "destruction", "present"] ``` **filter方法不是在原数组进行处理,而且要赋值给新变量**