From e3369bd10b0b61c056a046b50ed0c498124498cf Mon Sep 17 00:00:00 2001 From: Kamrul Islam Shahin <44506464+shahin-cuet@users.noreply.github.com> Date: Sun, 11 Oct 2020 12:23:34 +0600 Subject: [PATCH] double quotes added in the string --- readMe.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/readMe.md b/readMe.md index 8a4bb39..6d68d4b 100644 --- a/readMe.md +++ b/readMe.md @@ -257,7 +257,7 @@ So far, we saw how to display text using the _console.log()_. If we are printing ```js console.log('Hello, World!') -console.log('Hello, World!') +console.log("Hello, World!") console.log(`Hello, World!`) ``` @@ -465,8 +465,9 @@ A collection of one or more characters between two single quotes, double quotes, 'Finland' 'JavaScript is a beautiful programming language' 'I love teaching' -'I hope you are enjoying the first day'`We can also create a string using a backtick` -;('A string could be just as small as one character as big as many pages') +"I hope you are enjoying the first day" +`We can also create a string using a backtick` +('A string could be just as small as one character as big as many pages') ``` ### Booleans