for..of語句中如何去除數組中爲空的數據

public newArr = [];//聲明一個空數組,用來存儲不爲空的數據 for(let row of arr){ //判讀數據不能爲空且不能爲undefined if(row != "" && row != undefined){ this.newArr.push(row);//將不爲空的數據push到新數組中 } }
相關文章
相關標籤/搜索