占位符替换

可以在字符串中使用占位符来自动替换最终字符串中的值。

container = "cup"
liquid = "coffee"
string = "Filling the #{container} with #{liquid}..."

上面的字符串 - 打印时 - 会说:Filling the cup with coffee...

你甚至可以在这些占位符中使用 Coffee-script

sentence = "#{ 22 / 7 } is a decent approximation of π"