Skip to content

Instantly share code, notes, and snippets.

View white-hat-vaibhs's full-sized avatar
:octocat:
coding

Vaibhav soni white-hat-vaibhs

:octocat:
coding
View GitHub Profile
@white-hat-vaibhs
white-hat-vaibhs / LinkedList.js
Last active October 10, 2021 01:05
JS LinkedList
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
class LinkedList {
constructor() {
this.head = null;