Skip to content

Instantly share code, notes, and snippets.

@11ma
11ma / linkedList.js
Created July 19, 2020 07:51
Linkedlist
// source https://codeburst.io/linked-lists-in-javascript-es6-code-part-1-6dd349c3dcc3
class Node{
constructor(data, next = null){
this.data = data,
this.next = next
}
}
class LinkedList{
constructor(){