Snippets Collections
function getKey(k) {
  return `a key named ${k}`;
}

// bad
const obj = {
  id: 5,
  name: 'San Francisco',
};
obj[getKey('enabled')] = true;

// good
const obj = {
  id: 5,
  name: 'San Francisco',
  [getKey('enabled')]: true,
};
star

Thu Aug 19 2021 15:53:29 GMT+0000 (Coordinated Universal Time) https://github.com/airbnb/javascript

#object #literals

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension