We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35c2fe9 commit dc6ab78Copy full SHA for dc6ab78
src/_DataStructures_/LinkedList/index.js
@@ -1,6 +1,6 @@
1
class Node {
2
constructor(data, next) {
3
- this.data = data;
+ this.my_data = data;
4
this.next = next;
5
}
6
0 commit comments