From 73cb5552e9a2fe0bc800b03db4486ecafcbf9a07 Mon Sep 17 00:00:00 2001 From: oumaimafisaoui Date: Mon, 19 Aug 2024 20:12:00 +0100 Subject: [PATCH] Chore(DPxAI): fixed formatting --- subjects/DPxAI/good-recipe/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/DPxAI/good-recipe/README.md b/subjects/DPxAI/good-recipe/README.md index 16ed0bb40..ce5e4d870 100644 --- a/subjects/DPxAI/good-recipe/README.md +++ b/subjects/DPxAI/good-recipe/README.md @@ -39,7 +39,7 @@ console.log("flour", 200); // both arguments will appear in your console ### Methods -Methods are functions called from another value. For example, toFixed is a method that formats numbers: +Methods are functions called from another value. For example, ``toFixed`` is a method that formats numbers: ```js let num = 10 / 3; @@ -48,7 +48,7 @@ console.log(num.toFixed(2)); // -> '3.33' ### String Manipulation with Methods -Using the .slice method to cut parts of a string: +Using the ``.slice`` method to cut parts of a string: ```js let alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";