Get All Keys Of A JavaScript Object
Solution 1:
You can easily get an array of them via a for
loop, for example:
var keys = [];
for(var key in options) {
if(options.hasOwnProperty(key)) { //to be safe
keys.push(key);
}
}
Then use keys
how you want, for example:
var keyString = keys.join(", ");
You can test it out here. The .hasOwnProperty()
check is to be safe, in case anyone messed with the object prototype and such.
Solution 2:
options = {key1: "value1", key2: "value2"};
keys = Object.keys(options);
Solution 3:
A jQuery way of doing it:
var keys = [];
options = {key1: "value1", key2: "value2"};
$.each(options, function(key, value) { keys.push(key) })
console.log(keys)
Solution 4:
Most of the major browsers have this functionality built-in now, the method is Object.keys()
:
var keys = Object.keys(options);
//-> ["key1", "key2"]
You can also use a little snippet to implement this in browsers that don't support it:
Object.keys = Object.keys || (function () {
var hasOwnProperty = Object.prototype.hasOwnProperty;
return function (o) {
if (typeof o != "object" && typeof o != "function" || o === null)
throw new TypeError("Object.keys called on a non-object");
var result = [];
for (var name in o) {
if (hasOwnProperty.call(o, name))
result.push(name);
}
return result;
};
})();
That snippet works much the same as the one in Nick Craver's example with 2 exceptions:
- It will throw a meaningful TypeError if you pass anything other than an Object in (or "associative array", if you like).
- It will work around an annoying DOM-related issue in Internet Explorer where collections don't have the
hasOwnProperty
method.
This (and the other answers here) doesn't work around an IE enumeration bug, however. You can find more information and a partial work around for that on this answer here.
Solution 5:
You can now use
Object.keys(obj)
to get an array consisting of the available keys in an object. Mozilla has usage and availability information.
Post a Comment for "Get All Keys Of A JavaScript Object"