CoffeeScript Cookbook » Embedding JavaScript | Latest TMZ Celebrity News & Gossip | Watch TMZ Live

óCoffeeScript Cookbook

Embedding JavaScript

Problem

You want to include some found/pre-written JavaScript code inline with your CoffeeScript.

Solution

Wrap the JavaScript with backticks:

`function greet(name) {
return "Hello "+name;
}`

# Back to CoffeeScript
greet "Coffee"
# => "Hello Coffee"

Discussion

This is a simple way to integrate small snippets of JavaScript code into your CoffeeScript without converting it over to use CoffeeScript syntax. As shown in the CoffeeScript Language Reference you can mix the two languages to a certain extent:

hello = `function (name) {
return "Hello "+name
}`
hello "Coffee"
# => "Hello Coffee"

Here the hello variable is still in CoffeeScript, but is assigned a function written in JavaScript.

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.