LinkedList.js 228 B

1234567891011121314151617
  1. export default class LinkedList {
  2. constructor() {
  3. this.array = []
  4. }
  5. addLast(e) {
  6. this.array.push(e)
  7. }
  8. removeFirst() {
  9. return this.array.shift()
  10. }
  11. isEmpty() {
  12. return this.array.length === 0
  13. }
  14. }