Skip to content

Instantly share code, notes, and snippets.

@masahitojp
Created April 23, 2010 04:06
Show Gist options
  • Save masahitojp/376165 to your computer and use it in GitHub Desktop.
Save masahitojp/376165 to your computer and use it in GitHub Desktop.
// 連想配列のメンバー数を求める
Object.prototype.len_m=function(){
var i=0;
for(a in this){
if(typeof(this[a])!=="function")i++;
}
return i;
}
var a={"key":"value"};
console.log(a.len_m());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment