Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 13:20
Show Gist options
  • Save unknownuser88/8282794 to your computer and use it in GitHub Desktop.
Save unknownuser88/8282794 to your computer and use it in GitHub Desktop.
return obj keys
//return obj keys
$.extend({
keys: function(obj){
var a = [];
$.each(obj, function(k){ a.push(k) });
return a;
},
eys: function(obj){
return 'test';
}
})
// Usage:
var obj = {a: 1, b: 2, c: 3, d: 4, jquery: 'noob'}
console.log($.eys(obj)); // a,b,c,d,jquery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment