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" ```