我正在尝试将以'N'开头的列表元素整理到一个新列表中。
为什么不起作用?

const countries = ['Norway', 'Sweden',  'Denmark', 'New Zealand'];

function firstN(){
  for (let i=0;i<countries.length;i++){
    countries[i].startsWith("N")
    }
}

let startsWithN = countries.filter(firstN())

最佳答案

这与@adeneo的答案大致相同,只是有点小:

const countries = ['Norway', 'Sweden',  'Denmark', 'New Zealand'];

const startsWithN = countries.filter((country) => country.startsWith("N"));

console.log(startsWithN);

// Output: [ 'Norway', 'New Zealand' ]

关于javascript - 在JavaScript中过滤以字母开头的列表元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40454296/

10-11 22:07