From d35b2015d3e548ccf3fbfecb9c7c1df7ed5d4195 Mon Sep 17 00:00:00 2001 From: Oumaima Fisaoui <48260689+Oumaimafisaoui@users.noreply.github.com> Date: Thu, 8 Aug 2024 09:33:21 +0100 Subject: [PATCH] Chore(Quest01/objects-around): Modified case" --- subjects/DPxAI/objects-around/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/DPxAI/objects-around/README.md b/subjects/DPxAI/objects-around/README.md index f1f508540..d430b0a74 100644 --- a/subjects/DPxAI/objects-around/README.md +++ b/subjects/DPxAI/objects-around/README.md @@ -101,11 +101,11 @@ console.log(adjustedWeight); // Logs the adjusted weight #### Task 1: -Let's declare a variable `MyRobot` which has an object as its value with 3 properties: +Let's declare a variable `myRobot` which has an object as its value with 3 properties: -1. A `name` property of the robot's name as a String -2. An `age` property of the robot's age as a Number -3. A `hasEnergy` property as a Boolean indicating if the robot has dangerous features +1. A `name` property of ``myRobot``'s name as a String +2. An `age` property of ``myRobot``'s age as a Number +3. A `hasEnergy` property as a Boolean indicating if ``myRobot`` has dangerous features #### Task 2: