Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ลบ '0', 'undefined' และค่าว่างออกจากอาร์เรย์ใน JavaScript


ในการลบ '0' 'undefined' และค่าว่าง คุณต้องใช้แนวคิดของ splice() สมมติว่าต่อไปนี้คืออาร์เรย์ของเรา -

var allValues = [10, false,100,150 ,'', undefined, 450,null]

ต่อไปนี้เป็นรหัสที่สมบูรณ์โดยใช้ for loop และ splice() -

ตัวอย่าง

var allValues = [10, false,100,150 ,'', undefined, 450,null]
console.log("Actual Array=");
console.log(allValues);
for (var index = 0; index < allValues.length; index++) {
   if (!allValues[index]) {
      allValues.splice(index, 1);
      index--;
   }
}
console.log("After removing false,undefined,null or ''..etc=");
console.log(allValues);

ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -

node fileName.js.

ที่นี่ ชื่อไฟล์ของฉันคือ demo88.js

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

PS C:\Users\Amit\JavaScript-code> node demo88.js
Actual Array=
[ 10, false, 100, 150, '', undefined, 450, null ]
After removing false,undefined,null or ''..etc=
[ 10, 100, 150, 450 ]