From 9afa861f7ab7b8e53989c8351aa2ab03a968975c Mon Sep 17 00:00:00 2001 From: oumaimafisaoui Date: Thu, 29 Aug 2024 09:51:47 +0100 Subject: [PATCH] Fix(DPxAI): Fix fromatting --- subjects/DPxAI/play-with-variables/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/DPxAI/play-with-variables/README.md b/subjects/DPxAI/play-with-variables/README.md index 657bd3a10..112af3c43 100644 --- a/subjects/DPxAI/play-with-variables/README.md +++ b/subjects/DPxAI/play-with-variables/README.md @@ -52,7 +52,7 @@ console.log("I keep trying , I can't give up! "); ### Assign re-assign -Remember the ``let`` keyword used to declare new variables. +Remember the `let` keyword used to declare new variables. > Note that we can't have multiple variables with the same identifier otherwise JS wouldn't know which one is which. @@ -60,7 +60,7 @@ Redeclaring a variable will crash ! But it is still possible to use the = (assignment operator) to change its value ! -> Note that sometimes you may find variable declared with ``const``. This means that the assignation is constant and can never be re-assigned ! +> Note that sometimes you may find variable declared with `const`. This means that the assignation is constant and can never be re-assigned ! > It is used to protect your code against errors, but you can always use `let` in its place.. @@ -68,7 +68,7 @@ But it is still possible to use the = (assignment operator) to change its value #### **`Prompt Example`**: -- "As a beginner, what is the difference between let and ``const`` in JavaScript?" +- "As a beginner, what is the difference between let and `const` in JavaScript?" - "As a beginner, how do I reassign a value to an already declared variable in JavaScript?" ### Instructions