佔位符替換

可以在字串中使用佔位符來自動替換最終字串中的值。

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 π"