Update DoublyLinkedListNode.js

This commit is contained in:
raidenkhan 2023-09-21 12:34:24 +00:00 committed by GitHub
parent 76617fa83a
commit 16d6ffc697
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,9 @@
export default class DoublyLinkedListNode { export default class DoublyLinkedListNode {
constructor(value, next = null, previous = null) { constructor(value, next = null, previous = null) {//create a constructor.
this.value = value;
this.next = next; this.value = value;//the this keyword is used to refer to the object being created pretty much like a memory locatin
this.previous = previous; this.next = next;//this is to store the address of the next node
this.previous = previous;//this is to store the address of the previous node
} }
toString(callback) { toString(callback) {