Skip to content

Instantly share code, notes, and snippets.

View Nujoodalmadi's full-sized avatar
🦑

Nujood Nujoodalmadi

🦑
View GitHub Profile
@Nujoodalmadi
Nujoodalmadi / LinkedList.js
Last active September 5, 2019 13:29 — forked from klugjo/LinkedList.js
LinkedList ES6 Implementation
class LinkedList {
constructor() {
this.head = null;
this.tail = null;
this.count = 0;
}
get length() {
return this.count;
}