手册地址:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String
includes()
includes() 方法用于判断一个字符串是否包含在另一个字符串中,根据情况返回 true 或 false。
startsWith()
方法用来判断当前字符串是否以另外一个给定的子字符串开头,并根据判断结果返回 true 或 false。
语法:str.startsWith(searchString[, position])
searchString
要搜索的子字符串。
position 可选
在 str 中搜索 searchString 的开始位置,默认值为 0,也就是真正的字符串开头处。
endsWith()
endsWith()方法用来判断当前字符串是否是以另外一个给定的子字符串“结尾”的,根据判断结果返回 true 或 false。
语法:str.endsWith(searchString[, length])
searchString
要搜索的子字符串。
length 可选
作为 str 的长度。默认值为 str.length。
repeat()
把字符串重复多少次
模版字符串 `...`
连接字符串用
模板字符串的插值