Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea32a4 commit ed7b65eCopy full SHA for ed7b65e
‎introduction/ch1.md
@@ -24,6 +24,15 @@ Both the primitive and reference types in JavaScript are behind the hood reconst
24
* Note, if you see an anti-pattern comment on a code, it means its a bad practice
25
*/
26
27
+/**
28
+ * String is an object also
29
+ */
30
+const name = 'Emmanuel Onah';
31
+
32
+name.random = 'Random';
33
34
+console.log(name.random); // 'Random'
35
36
/***
37
* arrow function is an object and we can modularize it to make its content
38
* accessible as object property or method
0 commit comments