亲宝软件园·资讯

展开

foreach和some方法

前端歌谣 人气:0

在我们的日常开发中 不免会有很多需要处理数据的方法 本节主要说一说foreach和some的使用​​不多说把代码编辑器打开​​

一、foreach方法

1直接vs打开

2代码部分

var geyao = ['歌谣', '很帅', '很强']
  geyao.forEach((currentValue, index, arr, thisValue) => {
    console.log(currentValue, 'currentValue')
    console.log(index, 'index')
    console.log(arr, 'arr')
    console.log(thisValue, 'thisValue')
  })

小结:

二、some方法

1直接vs打开

2代码部分

//item 当前元素每一项的值 
    var geyao=['歌谣',"很帅","很强"]
  var geyao1 = geyao.some((item)=>{
       return item='歌谣'
    })
    console.log(geyao1,"geyao1")

3总结

注意:some() 不会对空数组进行检测。
注意:some() 不会改变原始数组。

加载全部内容

相关教程
猜你喜欢
用户评论