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

JavaScript ลบ '+' ทั้งหมดออกจากอาร์เรย์โดยที่ทุกองค์ประกอบนำหน้าด้วยเครื่องหมาย +


สมมติว่าต่อไปนี้คืออาร์เรย์ของเราที่มีองค์ประกอบนำหน้าด้วยเครื่องหมาย + -

var studentNames =
[
   '+John Smith',
   '+David Miller',
   '+Carol Taylor',
   '+John Doe',
   '+Adam Smith'
];

หากต้องการลบเครื่องหมาย + รหัสจะเป็นดังนี้ −

ตัวอย่าง

studentNames =
[
   '+John Smith',
   '+David Miller',
   '+Carol Taylor',
   '+John Doe',
   '+Adam Smith'
];
console.log("The actual array=");
console.log(studentNames);
studentNames = studentNames.map(function (value) {
   return value.replace('+', '');
});
console.log("After removing the + symbol, The result is=");
console.log(studentNames);

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

node fileName.js.

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

ผลลัพธ์

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

PS C:\Users\Amit\javascript-code> node demo205.js
The actual array=
[
   '+John Smith',
   '+David Miller',
   '+Carol Taylor',
   '+John Doe',
   '+Adam Smith'
]
After removing the + symbol, The result is=
[
   'John Smith',
   'David Miller',
   'Carol Taylor',
   'John Doe',
   'Adam Smith'
]