startsWidth()
endsWidth
字符串模板${a}xxx${b}
把变量直接放进来
/*
多了两个新的方法:startsWith,endsWith
字符串模板
*/
let str1 = 'https://www.mottoko.com';
if(str1.startsWith('http://')){
console.log('http')
}else{
console.log('https')
}
let str2 = '1.txt';
if(str2.endsWith('.txt')){
console.log('文本文件')
}else{
console.log('图片文件')
}