字符串的拓展
模板字符串
console.log(` \` `);
//在模板字符串中如果需要写一个字符反点,则要在反点前面加上\
let str='hellow';
console.log(str.includes("o"));//true
console.log(str.includes("a"));//false
// 查找指定字符有返回值
// 如果能找到返回true,找不到返回false
console.log(str.startsWith("h"));//true
console.log(str.startsWith("he"));//true
console.log(str.startsWith("hel"));//true
console.log(str.startsWith("helo"));//false
console.log(str.startsWith("o"));//false
console.log(str.startsWith("w"));//false
// 判断是否以指定字符开头返回值是布尔值
// 是返回TRUE
// 不是返回false
console.log(str.endsWith("w"));
console.log(str.endsWith("ow"));
console.log(str.endsWith("oll"));
console.log(str.endsWith("ll"));
// 判断是否以指定字符结尾返回值是布尔值
// 是返回TRUE
// 不是返回false
console.log(str.repeat(1));
console.log(str.repeat(2));
console.log(str.repeat(3));
// 将原字符串重复复制指定次数,并将生成的新字符串返回
let str1 = ' a b c d e f ';
console.log(str1.trim());//删除首尾空格
let str1 = ' a b c d e f ';
console.log(str1.trimStart());//删除首位空格
let str1 = ' a b c d e f ';
console.log(str1.trimEnd());//删除末位空格