Skip to content

Instantly share code, notes, and snippets.

@steppefox
Created September 3, 2013 05:38
Show Gist options
  • Save steppefox/6420055 to your computer and use it in GitHub Desktop.
Save steppefox/6420055 to your computer and use it in GitHub Desktop.
size of analog in js
//Проверка пустоты объекта ~size ~sizeof
var size = function (obj) {
var size = 0, key;
for (key in obj) {
if (obj.hasOwnProperty(key)) size++;
}
return size;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment