字符串的扩展方法 const msg='hello,ES6!' console.log( msg.startsWith('hello'),//startWith,是否以hello开头,返回true msg.endsWith('!'),//endsWith,是否以!结尾,返回true msg.includes('ES')//includes,字符串中是否包含ES,返回true );