DEV Community

Star
Star

Posted on

2

Write Concise Object Literal Declarations Using Object Property Shorthand

Write Concise Object Literal Declarations Using Object Property Shorthand

ES6 has yet another special feature for defining object literals, ergo, the data propogated into the object can be defined and sorted with built-in shortcuts.

The old way to define x as x and y as y:

const getMousePosition = (x, y) => ({
  x: x,
  y: y
});
Enter fullscreen mode Exit fullscreen mode

The “new” 😎 way

const getMousePosition = (x, y) => ({ x, y });
Enter fullscreen mode Exit fullscreen mode

Prompt

Use object property shorthand with object literals to create and return an object with name, age and gender properties.

const createPerson = (name, age, gender) => {
  // Only change code below this line
  return {
    name: name,
    age: age,
    gender: gender
  };
  // Only change code above this line
};
Enter fullscreen mode Exit fullscreen mode

Solution

const createPerson = (name, age, gender) => {
  // Only change code below this line
  return  {name, age, gender
  };
  // Only change code above this line
};
Enter fullscreen mode Exit fullscreen mode

Unfortunately, I cannot see any new understanding in this as I don’t have the experienced perspective of the old way, just that from the example. Makes this post kinda feel like bloat but how else would I remember it?

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (1)

Collapse
 
muhammadmehedihasanopisarker profile image
Muhammad Mehedi Hasan

good explanation.

SurveyJS custom survey software

JavaScript Form Builder UI Component

Generate dynamic JSON-driven forms directly in your JavaScript app (Angular, React, Vue.js, jQuery) with a fully customizable drag-and-drop form builder. Easily integrate with any backend system and retain full ownership over your data, with no user or form submission limits.

Learn more