Skip to content

Instantly share code, notes, and snippets.

@dimpu
Created October 29, 2015 07:35
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 dimpu/68dfbf2363fa43c6148e to your computer and use it in GitHub Desktop.
Save dimpu/68dfbf2363fa43c6148e to your computer and use it in GitHub Desktop.
//es5
var avenger = "tony";
var says = "Sometimes you gotta run before you can walk.";
console.log(avenger+" says "+says);
//es 6
"use strict";
let avenger = "tony";
let says = "Sometimes you gotta run before you can walk.";
console.log(`${avenger} says ${says}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment