🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 1.startsWith ~~~ var str="hello"; console.log(str.startsWith("he")) //true ~~~ ## 2.endsWith ~~~ var str="hello"; console.log(str.endsWith("he")) //false ~~~