Write Concise Object Literal Declarations Using Object

Channel:
Subscribers:
8,020
Published on ● Video Link: https://www.youtube.com/watch?v=5U_qDZlh8Wg



Duration: 3:54
287 views
6


In this lesson from freeCodeCamp's ES6 Challenges for beginners, we learn about a new and shorthand version or writing object literals. Specifically, this is referred to as object property shorthand and it basically allows us to avoid being redundant by eliminating having to write out our objects using the same variable name of the argument passed into a function. We are able to go from writing objects like this {a:a, b:b}, to simply doing {a, b} In so doing we are able to do the same thing that we have always been able to do in javascript, except now we don't have to write out the key-value within our object, Javascript is smart enough to know we want an object to be created for us, set up in a conventional manner. If you are understanding this you are doing fine, but if you are having trouble with object literal shorthand, I suggest watching some of our previous ES6 lessons, and those are available for free at https://wewillcode.com/courses




Other Videos By We Will Code


2019-12-22Create a Javascript Promise, freeCodeCamp's ES6 Challenges on freeCodeCamp
2019-12-22Import a Default Export, freeCodeCamp's ES6 Lessons and Explanations
2019-12-21Create an Export Fallback with export default, freeCodeCamp's ES6 JS Syntax
2019-12-21Use * to Import Everything from a File, freeCodeCamp
2019-12-21Reuse Javascript Code Using import, freeCodeCamp's ES6 Challenges, Javascript Help 2020
2019-12-20Use export to Share a Code Block, ES6 Challenges freeCodeCamp, WebDev Tutorials
2019-12-18Create a Module Script, Learn JS ES6 Syntax on freeCodeCamp, Learn to Code Free Online Tutorial
2019-12-17Use getters and setters to Control Access to an Object, freeCodeCamp's Learn ES6 Syntax Challenges
2019-12-03Use class Syntax to Define a Constructor Function, ES6 tutorial, Learn ES6 Syntax
2019-12-02Write Concise Declarative Functions with ES6, Learn ES6 Syntax
2019-11-29Write Concise Object Literal Declarations Using Object
2019-11-28Create Strings using Template Literals, Learn JS ES6
2019-11-26Use Destructuring Assignment to Pass an Object as a Function's Parameters,Learning Destructuring ES6
2019-11-24Use Destructuring Assignment with the Rest Parameter to Reassign Array Elements, Learn JS 2020
2019-11-23Use Destructuring Assignment to Assign Variables from Arrays, Learning JS ES6 2020, Web Dev
2019-11-22Use Destructuring Assignment to Assign Variables from Nested Objects, Learning the ES6 Syntax
2019-11-21Use Destructuring Assignment to Assign Variables from Objects, An ES6 Course Introduction
2019-11-20Use Destructuring Assignment to Extract Values from Objects, freeCodeCamp tutorials for ES6
2019-11-19Use the Spread Operator to Evaluate Arrays In-Place, An ES6 Teaching
2019-11-18Use the Rest Parameter with Function Parameters, freeCodeCamp Course on ES6 Syntax, Learn JS 2020
2019-11-17Set Default Parameters for Your Functions, ES6 Courses on



Tags:
learn object literals
understanding object literals
object property shortand
object shortand
es6 object literals