ES6模板字符串replace實現

ES6模板字符串 const obj = { name: 'zj', age: 18 } const str = `個人名字叫${obj.name},今年${obj.age}歲` console.log(str) 模板字符串replace實現 function replace(desc) { return desc.replace(/\$\{([^}]+)\}/, function (
相關文章
相關標籤/搜索