Skip to content

Instantly share code, notes, and snippets.

@oberhamsi
Created March 29, 2012 08:11
Show Gist options
  • Select an option

  • Save oberhamsi/2234853 to your computer and use it in GitHub Desktop.

Select an option

Save oberhamsi/2234853 to your computer and use it in GitHub Desktop.
(function() {
"use strict";
function fooBar(arg) {
console.log("first arg is ", arg);
}
function main() {
fooBar(this);
};
main();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment