ES6字符串的使用技巧

ES6字符串的使用技巧_第1张图片
image.png

let js="用户登录 - 码云 Gitee.com";
let ts="支持 Git 和 SVN,提供免"+js+"费的私有仓库托管"
let sc="Git"
console.log(ts.includes(sc)) //字符串的查找
console.log(ts.startsWith(sc)) //开头查找
console.log(ts.endsWith(sc))//结尾查找
console.log("xk|".repeat(21))//复制功能

你可能感兴趣的:(ES6字符串的使用技巧)