javascript如何访问数组项,下面web建站小编给大家介绍访问数组项的三种方法。
方法一:
let colors = ['red','yellow','white']; let firstColor = 'red'; if (colors.length > 0) { firstColor = colors[0]; } console.log('输出结果:',firstColor) //输出结果: red
方法二:
let colors = ['red','yellow','white']; let [firstColor = 'red'] = colors; console.log('输出结果:',firstColor) //输出结果: red
方法三:
let colors = ['red','yellow','white']; let [, secondColor = 'yellow'] = colors; console.log('输出结果:',secondColor) //输出结果: yellow
javascript语法如何把json文件输出到html页面上
标签: 访问数组项
上面是“javascript如何访问数组项”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2545.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!