NodeJS findLastIndex不是一个函数,如何,为什么

unftdfkk  于 2023-01-16  发布在  Node.js
关注(0)|答案(1)|浏览(656)
const list = [1,2,100,50,100,20]
const index = list.findLastIndex((item)=>item===100)
console.log(index)
// TypeError: list.findLastIndex is not a function

我们是否可以说此方法不存在,但它确实存在于MDN中

eit6fx6z

eit6fx6z1#

如果您查看MDN上兼容性信息
它在节点18以下不受支持。
检查节点版本

node -v

或者

node --version

相关问题