js如何判断一个字符串是以某个字符串开头?

substr() :

if("hello world".substr(0, 5) == "hello"){
console.log(true);
}

substring() :

if("hello world".substring(0, 5) == "hello"){
console.log(true);
}

slice():

if("hello world".slice(0, 5) == "hello"){
console.log(true);
}

indexOf():

if("hello world".indexOf("hello") == 0) {
console.log(true);
}

search()

if("hello world".search("hello") == 0) {
console.log(true);
}

test()

if(new RegExp("^abc.*$").test("abcdefg")) {
console.log(true);
}

match()

if("abcdefg".match(new RegExp("^ab.*$"))) {
console.log(true);
}

返回数组最大值和最小值

let array=[1,2,3,4,5,6,7,8,9,0]
//查询最大值
var maxValue = Math.max.apply(Math, array);
//查询最小值
var minValue = Math.min.apply(Math, array);
————————————————
版权声明:本文为CSDN博主「hawkol」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/hawkol/article/details/123028062

本文由 我爱PHP169 作者:admin 发表,其版权均为 我爱PHP169 所有,文章内容系作者个人观点,不代表 我爱PHP169 对观点赞同或支持。如需转载,请注明文章来源。

发表回复