Skip to content

Instantly share code, notes, and snippets.

@jraff
Created April 2, 2015 18:21
Show Gist options
  • Select an option

  • Save jraff/1e5c4218a649713db616 to your computer and use it in GitHub Desktop.

Select an option

Save jraff/1e5c4218a649713db616 to your computer and use it in GitHub Desktop.
// 1
var a = 1,
b = function a(x) {
return 'foo';
};
alert(a);
// 2
function a(x) {
return x * 2;
};
var a;
alert(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment