Skip to content

Instantly share code, notes, and snippets.

@SteveBarnett
Created November 2, 2015 13:48
Show Gist options
  • Save SteveBarnett/11cafe6b6404f16edd9e to your computer and use it in GitHub Desktop.
Save SteveBarnett/11cafe6b6404f16edd9e to your computer and use it in GitHub Desktop.
console.log and vars and thing

console.log(7);

console.log(7 + 2);

console.log("Fish");

console.log("Fish and chips");

console.log("Fish" + " and" + " chips");

var name = "Jack";
console.log("Jill");
var name = "Jack";
console.log(name);
var name = "Jack";
console.log("Jill");
console.log(name);
var name = "Jack";
console.log(name + " Jill");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment