From 9f91947deaa7baf5051d8e8aed44f8316eba5535 Mon Sep 17 00:00:00 2001 From: oumaimafisaoui Date: Tue, 6 Aug 2024 09:35:37 +0100 Subject: [PATCH] Chore(Quest00/Ex01): Added challenge mode and unified format --- subjects/DPxAI/declare-everything/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/subjects/DPxAI/declare-everything/README.md b/subjects/DPxAI/declare-everything/README.md index 4aaa2f2cc..d3bf40c04 100644 --- a/subjects/DPxAI/declare-everything/README.md +++ b/subjects/DPxAI/declare-everything/README.md @@ -1,5 +1,7 @@ ## Declare Everything +>Mindful AI mode + ### Context In this second quest of our adventure, you are going to power up with JavaScript. And in this exercise you'll use variables to control and manage robots in various scenarios. Let's dive in and get started with the basics of variables in JavaScript! @@ -76,7 +78,7 @@ let robotParts = 20 // Just right The special character `=` is an **operator**, like in math, they are used to define specific operations. In this case, `=` defines the `assignment` operation. It means assigning a value to our variable. This is what **links** the chosen `identifier` with our `value`. -#### `Prompt example`: +#### **`Prompt example`**: "Why do we use camelCase for variable names in JavaScript?" @@ -90,7 +92,7 @@ let comicBookTitle = "Tintin in Tibet"; // ↖ identifier ↖ the value (here a string) ``` -#### **Prompt example**: +#### **`Prompt example`**: "As a beginner, what types of values can I assign to a variable in JavaScript?"