We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abff8e0 commit 575e84eCopy full SHA for 575e84e
linked-list/day10.js
@@ -1,6 +1,6 @@
1
// ! DSA in JavaScript day 10
2
3
-// Todo: Link List
+// Todo: Linked List
4
5
class Node {
6
constructor(value) {
strings/day11.js
@@ -0,0 +1,10 @@
+// ! DSA in JavaScript day 10
+
+// Todo: Strings
+// * How to declare a string
+const string = new String("Hello World !"); // * Using new Keyword
7
+// prettier-ignore
8
+const string2 = 'Hello World !'; // using Single carts
9
+const string3 = "Hello World !"; // using dobla carts
10
+const string4 = `Hello World !`; // using backticks
0 commit comments