我已经能够使用“for”循环和“for in”循环来计算拼接,但不能使用“for of”循环。可能吗?这是我的起始代码......有什么想法可以改变以使其工作吗?
let array = [ 'a', 'b', 'c' ];
function remove( letter ){
for( let item of array ){
if( item === letter ){
parkedCars.splice ( item, 1 );
}
}
}
remove( 'b' );
console.log( array );