Deno in a Nutshell

The very terse guide to Deno for experienced programmers.

First one!

// `console.log` automatically converts args to strings.
console.log(1, "Hello, World!");

// Arguments are printed with a space between each one.
const name = "Deno";
console.log(2, "Hello,", name, "!");
console.log(3, "Hello,", name, "!", "You are number", 1, "!");

// Use a template literal to embed a variable directly in the
// string for better control over formatting.
console.log(4, `Hello, ${name}!`);

// Template literals allow you to embed expressions, not just
// variables, inside the braces (`${}`).
const getName = () => "Deno";
console.log(5, `Hello, ${getName()}!`);
  
1 Hello, World!
2 Hello, Deno !
3 Hello, Deno ! You are number 1 !
4 Hello, Deno!
5 Hello, Deno!
  

And another one!

// `console.log` automatically converts args to strings.
console.log(1, "Hello, World!");

// Arguments are printed with a space between each one.
const name = "Deno";
console.log(2, "Hello,", name, "!");
console.log(3, "Hello,", name, "!", "You are number", 1, "!");

// Use a template literal to embed a variable directly in the
// string for better control over formatting.
console.log(4, `Hello, ${name}!`);

// Template literals allow you to embed expressions, not just
// variables, inside the braces (`${}`).
const getName = () => "Deno";
console.log(5, `Hello, ${getName()}!`);
  
1 Hello, World!
2 Hello, Deno !
3 Hello, Deno ! You are number 1 !
4 Hello, Deno!
5 Hello, Deno!
  

It worked!