UNPKG

@gobalkrishnan/dsa_collection

Version:

Data Structure and Algorthim used to build application

7 lines 145 B
export class Node{ constructor({data,prev,next}){ this.data = data; this.prev = prev; this.next = next; } }