Skip to content

Instantly share code, notes, and snippets.

@varmais
Created January 30, 2014 09:44
Show Gist options
  • Save varmais/8705426 to your computer and use it in GitHub Desktop.
Save varmais/8705426 to your computer and use it in GitHub Desktop.
this.getMapSize = function()
{
var s = 0;
for (var i in this.attachedMap)
{
s++;
}
return s;
}
======
this.getMapSize = function()
return _.size(this.attachedMap);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment