Skip to content

Instantly share code, notes, and snippets.

@kitek
Created November 28, 2011 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitek/1400902 to your computer and use it in GitHub Desktop.
Save kitek/1400902 to your computer and use it in GitHub Desktop.
Zliczanie elementów w obiekcie JavaScript
var obiekt = {'1':'ala','2':'basia','3':'zosia'};
var ile = Object.keys(obiekt).length;
console.log(ile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment