Skip to content

Instantly share code, notes, and snippets.

@jennz0r
Created May 20, 2019 23:23
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 jennz0r/afa821d1a392b59dfbc668ae2a565ecf to your computer and use it in GitHub Desktop.
Save jennz0r/afa821d1a392b59dfbc668ae2a565ecf to your computer and use it in GitHub Desktop.
let exclamation = 'Whoa!';
let sentence = `They are really similar to Python.`;
console.log(`Template Literals: ${exclamation} ${sentence}`);
// Template Literals: Whoa! They are really similar to Python.
print '.format(): {} {}'.format('Yup.', 'Quite!')
# .format(): Yup. Quite!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment