题解 | #移除数组中的元素#
移除数组中的元素
http://www.nowcoder.com/practice/a93dd26ebb8c425d844acc17bcce9411
function removeWithoutCopy(arr, item) { var index = arr.indexOf(item) while(index >= 0){ // 使用splice方法移除该元素 arr.splice(index, 1) // 继续查找arr数组是否还有item元素 index = arr.indexOf(item) } return arr }