ES6學習筆記-字符串、函數

字符串 es6對字符串新增了不少方便的功能,下面咱們能夠逐一來看一下。es6 1.字符串格式化 將表達式嵌入字符串中進行拼接。用${}來界定。web //ES5 var name = 'will' console.log('hello' + name) //es6 var name = 'will'; console.log(`hello ${name}`) 2.includes:判斷是否包含而
相關文章
相關標籤/搜索