JSFiddle - React, Tailwind, and code Playground
JavaScript
var obj = {
dog: "woof",
cat: "meow",
key: function(n) {
return this[Object.keys(this)[n]];
}
};
console.log(obj.key(1)); // "meow"
var obj = {
dog: "woof",
cat: "meow",
key: function(n) {
return this[Object.keys(this)[n]];
}
};
console.log(obj.key(1)); // "meow"