How to Set Object Keys by Variables in JavaScript
In order to use variable names as object keys, you need to make use of bracket notation:
Copied to clipboard!
const key = 'showTopProducts';
const filters = { ... };
filters[key] = true;
It is called a property accessor, that provides a way to access the properties of an object.
If you are using ES6 and above, you can also use bracket notation right inside an object:
Copied to clipboard! Playground
const key = 'showTopProducts';
const filters = {
[key]: true
};
console.log(filters);
// The above console.log will output:
{ showTopProducts: true }
Resources:
π More Webtips
Rocket Launch Your Career
Speed up your learning progress with our mentorship program. Join as a mentee to unlock the full potential of Webtips and get a personalized learning experience by experts to master the following frontend technologies: