includes()
方法主要用于判断字符串是否包含指定的子字符串。下面web建站小编给大家简单介绍一下使用方法!
数组中使用include方法判断是否存在元素
var arr = ["dog", "cat", "pig"]; console.log("输出结果1:",arr.includes("cat")) //输出结果1: true console.log("输出结果2:",arr.includes("house")) //输出结果2: false
字符串中使用include方法判断是否存在元素
var str = "hellow world"; console.log('输出结果1:', str.includes("web")) //输出结果1: false console.log('输出结果2:', str.includes("hellow")) //输出结果2: true
上面是“javascript关于数组中使用include方法”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4270.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!