Skip to content

Instantly share code, notes, and snippets.

@mariusGundersen
Created November 1, 2013 08:49
Show Gist options
  • Save mariusGundersen/7262624 to your computer and use it in GitHub Desktop.
Save mariusGundersen/7262624 to your computer and use it in GitHub Desktop.
AMD with named functions
define([], function() {
return function deadWeight() {
var weight = 1000000;
var theWeight = new Array(weight);
for (var i = 0; i < weight; i++)
theWeight[i] = i;
this.getWeight = function() { return theWeight;}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment