From e3eb38b827febfc9c8f399ca464da5094ca57045 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 11 Sep 2022 06:41:38 +1000 Subject: [PATCH] Tweak --- quick-start-guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quick-start-guide.md b/quick-start-guide.md index e494467..29e30fe 100644 --- a/quick-start-guide.md +++ b/quick-start-guide.md @@ -115,5 +115,7 @@ When indexing a compound value, you can use slice notation to manipulate it's el var greeting = "Hello world"; print greeting[::-1]; //dlrow olleH + +greeting[0:4] = "Goodnight"; //changes greeting to equal "Goodnight world" ```