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