Learn to create and use objects in JavaScript.
- In this exercise, you will create a JavaScript object to store and access data in a structured format.
- You will practice accessing and modifying the properties of the object.
- Create an object named 'person' with properties 'firstName' and 'lastName'.
- The 'firstName' should be 'Alice' and 'lastName' should be 'Smith'.
- Log the full name of the person to the console by accessing the object's properties.
Commit and push your changes to this repository.