iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 21
1
自我挑戰組

JavaScript技術手冊閱讀筆記系列 第 21

第21天:模板字串

  • 分享至 

  • xImage
  •  

第21天,已經過了三個禮拜,身心俱疲...就算是待業中一次開四個主題實在是太累了

在ES6開始提供了模板字串的方式來建立字串,使用鍵盤坐上角的「‵」(半形),使用這種方式建立的字串可以還換行,也可以在字串中使用${變數名稱}直接插入變數(不限數量)。

let str = ` <div>
                <p>123123</p>
            </div>`;
console.log(str);

https://ithelp.ithome.com.tw/upload/images/20201006/20120420lNQIg9PGWT.png

let name = '長庚';

let str = `${name}好帥`;
console.log(str);

https://ithelp.ithome.com.tw/upload/images/20201006/20120420FQeIH4MqkP.png


上一篇
第20天:還在對字串用for迴圈嗎?改用for...of吧,for...of與for...in的差別
下一篇
第22天:陣列的靜態方法
系列文
JavaScript技術手冊閱讀筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言