![How to Set Object Keys by Variables in JavaScript](https://allma.si/blog/wp-content/uploads/2020/08/use-variable-as-object-key.png)
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 }
![How to Set Object Keys by Variables in JavaScript](https://allma.si/blog/wp-content/uploads/2020/08/use-variable-as-object-key-1024x1024.png)
Resources:
π More Webtips
![Mentoring](/assets/img/mentoring.png)
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: