Skip to content

Instantly share code, notes, and snippets.

@maciejmatu
Last active October 20, 2017 22:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maciejmatu/a7b981d86b3ad3bd7c558254d7b6bcb0 to your computer and use it in GitHub Desktop.
Save maciejmatu/a7b981d86b3ad3bd7c558254d7b6bcb0 to your computer and use it in GitHub Desktop.
const log = (...args) => console.log(...args);
log('This', 'is', 'useless');
// 'This', 'is', 'useless'
const name = 'Bob';
log`Hi ${name}! How are you?`;
// ['Hi ', '! How are you?'], 'Bob'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment