filter()
方法創建一個新數組, 其包含通過所提供函數實現的測試的所有元素。
語法:var new_array = arr.filter(
callback(element[, index[, array]])[, thisArg])
1 var words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present']; 2 3 const result = words.filter(word => word.length > 6); 4 5 console.log(result); 6 // expected output: Array ["exuberant", "destruction", "present"]