W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
你想創(chuàng)建一個(gè)字符串,讓它包含體現(xiàn)某個(gè)CoffeeScript變量的文本。
使用CoffeeScript中類似Ruby的字符串插值,而不是JavaScript的字符串拼接。
插值:
muppet = "Beeker"
favorite = "My favorite muppet is #{muppet}!"
# => "My favorite muppet is Beeker!"
square = (x) -> x * x
message = "The square of 7 is #{square 7}."
# => "The square of 7 is 49."
CoffeeScript的插值與Ruby類似,多數(shù)表達(dá)式都可以用在#{ ... }插值結(jié)構(gòu)中。
CoffeeScript支持在插值結(jié)構(gòu)中放入多個(gè)有副作用的表達(dá)式,但建議大家不要這樣做。因?yàn)橹挥斜磉_(dá)式的最后一個(gè)值會(huì)被插入。
# 可以這樣做,但不要這樣做。否則,你會(huì)瘋掉。
square = (x) -> x * x
muppet = "Beeker"
message = "The square of 10 is #{muppet='Animal'; square 10}. Oh, and your favorite muppet is now #{muppet}."
# => "The square of 10 is 100. Oh, and your favorite muppet is now Animal."
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: