字符串扩展
作者:
牛耀 | 来源:发表于
2018-09-27 22:17 被阅读0次
- includes(str) : 判断是否包含指定的字符串
- startsWith(str) : 判断是否以指定字符串开头
- endsWith(str) : 判断是否以指定字符串结尾
- repeat(count) : 重复指定次数
let str = 'asdfohsvckxnlck';
str.includes('t')
str.startsWith('a')
str.endsWith('k')
str.repeat(5)
let str='asfdgahscjdajkj';
// console.log(str.includes('s'));
console.log(str.startsWith('s'));
// console.log(str.endsWith('j'));
console.log(str.endsWith('k'));
console.log(str.repeat(1));
本文标题:字符串扩展
本文链接:https://www.haomeiwen.com/subject/eriyoftx.html
网友评论