Computer >> Máy Tính >  >> Lập trình >> Javascript

JavaScript Xóa tất cả '+' khỏi mảng trong đó mọi phần tử được đặt trước bởi dấu +


Giả sử sau đây là mảng của chúng ta với các phần tử đứng trước dấu + -

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

Để loại bỏ dấu +, mã như sau -

Ví dụ

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);

Để chạy chương trình trên, bạn cần sử dụng lệnh sau -

node fileName.js.

Ở đây tên tệp của tôi là demo205.js.

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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'
]