Skip to content

Instantly share code, notes, and snippets.

@masahitojp
Created March 1, 2012 09:35
Show Gist options
  • Save masahitojp/1948563 to your computer and use it in GitHub Desktop.
Save masahitojp/1948563 to your computer and use it in GitHub Desktop.
underscore.jsのglobalへの変数"_"の定義部分のみの抜きだし
(function(global){
var a = function(){console.log("test");};
global.a =a;
})(this || window);
console.log(typeof window.a);
console.log(window.a());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment