W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
你想創(chuàng)建一個字符串,讓它包含體現(xiàn)某個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ù)表達式都可以用在#{ ... }插值結構中。
CoffeeScript支持在插值結構中放入多個有副作用的表達式,但建議大家不要這樣做。因為只有表達式的最后一個值會被插入。
# 可以這樣做,但不要這樣做。否則,你會瘋掉。
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號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: