There was an error while loading. Please reload this page.
2 parents fd11deb + f769f29 commit 849ceb1Copy full SHA for 849ceb1
1_variables_and_data_types/variablesDataTypes.md
@@ -41,7 +41,7 @@ There are 3 ways of representing a string:
41
We can use Single Quote or Double Quote if we just want to statically display it.
42
43
```js
44
-const singleQuote = "Hello";
+const singleQuote = 'Hello';
45
const doubleQuote = "Hello";
46
```
47
@@ -115,4 +115,4 @@ console.log(typeof arr); // object
115
116
// date is an object;
117
const date = new Date();
118
-console.log(typeof date); // object
+console.log(typeof date); // object
0 commit comments