Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created April 22, 2015 01:05
Show Gist options
  • Save RyoSugimoto/a4778958f5590df2325e to your computer and use it in GitHub Desktop.
Save RyoSugimoto/a4778958f5590df2325e to your computer and use it in GitHub Desktop.
オブジェクトのプロパティ数を取得する。
var getObjectLength = function (obj) {
var a, l = 0;
for (a in obj) {
l++;
}
return l;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment