From ddbe4e5a4a8ea45867d9797c2565f5188af85c7e Mon Sep 17 00:00:00 2001 From: Jean-Gabriel Date: Fri, 19 Mar 2021 12:36:28 +0100 Subject: [PATCH] Fix single quotes example by remplacing " with ' --- strings/create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/create.md b/strings/create.md index 6cbc986a..511497ff 100644 --- a/strings/create.md +++ b/strings/create.md @@ -4,7 +4,7 @@ You can define strings in JavaScript by enclosing the text in single quotes or d ```js // Single quotes can be used -var str = "Our lovely string"; +var str = 'Our lovely string'; // Double quotes as well var otherStr = "Another nice string";