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

ลบค่าเดียวกันออกจากอาร์เรย์ที่มีหลายค่า JavaScript


สมมติว่าต่อไปนี้คืออาร์เรย์ที่มีค่าใกล้เคียงกัน −

const listOfStudentName = ['John', 'Mike', 'John', 'Bob','Mike','Sam','Bob','John'];

หากต้องการลบค่าที่คล้ายกันออกจากอาร์เรย์ ให้ใช้แนวคิดของ set() ต่อไปนี้เป็นรหัส -

ตัวอย่าง

const listOfStudentName = ['John', 'Mike', 'John', 'Bob','Mike','Sam','Bob','John'];
console.log("The value="+listOfStudentName);
const doesNotContainSameElementTwice = [...new Set(listOfStudentName)];
console.log("The Array=");
console.log(doesNotContainSameElementTwice)

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

node fileName.js.

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

ผลลัพธ์

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

PS C:\Users\Amit\JavaScript-code> node demo42.js
The value=John,Mike,John,Bob,Mike,Sam,Bob,John
The Array= [ 'John', 'Mike', 'Bob', 'Sam' ]