There was an error while loading. Please reload this page.
1 parent ad5fb04 commit 8163f5aCopy full SHA for 8163f5a
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