Skip to content

Instantly share code, notes, and snippets.

@josescasanova
Created February 7, 2016 01:24
Show Gist options
  • Save josescasanova/5319ea3480278ca98c06 to your computer and use it in GitHub Desktop.
Save josescasanova/5319ea3480278ca98c06 to your computer and use it in GitHub Desktop.
var n = 42;
function f() { alert("foo"); };
alert("n is " + n.toString()); // "n is 42"
alert(f.name + " is a function"); // "f is a function"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment