- Create an
Object - Perform operations on an
Object
We covered the concepts of Objects in JavaScript. Now it's time to put the
concepts into practice.
If you haven't already, fork and clone this lab into your local environment.
Navigate into its directory in the terminal, then run code . to open the files
in Visual Studio Code. Finally, run npm install to install the lab's
dependencies.
Follow the steps below, running npm test as you go to get additional
information from the tests.
Let's say we are working on a program that will keep track of a company's
employees. We want to store each employee as an Object. We're starting
small, so to begin with we'll only keep track of the employee's name and street
address.
To start, define a employee variable and assign it to an Object containing
name and streetAddress keys; you can use whatever values you like. Use
literal syntax to create your Object. Various updates will be applied to this
variable (destructively and non-destructively) in this lab.
Once you've initialized the employee Object, you'll need to create the
following four functions:
updateEmployeeWithKeyAndValue(): this function should take in three arguments: aemployeeObject, akeyand avalue. This function should not mutate theemployee; it should return a newObjectthat has an updatedvaluefor thekeypassed in.destructivelyUpdateEmployeeWithKeyAndValue(): this function should work the same asupdateEmployeeWithKeyAndValue()but it should mutate theemployeeObjectpassed in.deleteFromEmployeeByKey(): this function should take in aemployeeObjectand akey. It should delete the property with thatkeyfrom theemployeeObject. This should not mutate the originalemployeeObject; it should return a newObjectthat doesn't include the identified key-value pair.destructivelyDeleteFromEmployeeByKey(): this function should work the same asdeleteFromEmployeeByKey()but it should mutate theemployeeObject.
As you work on your functions, be sure to think about when to use dot notation vs. bracket notation.
Currently, the work you've done on this assignmnent is only on your local machine. To preserve your solution on your GitHub fork, you will need to stage the changes you've made, commit them, and push the commit up to GitHub. Use the following commands to do this:
git add .
git commit -m "Completed assignment"
git pushIf you visit your fork on GitHub, you should now see that you've made the most recent commit, and your code will be present in the files.
In this lab, we practiced creating an Object and performing operations on it.