Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class LinkedList {
- constructor() {
- this.list = [];
- }
- push(x) {
- this.list = [x , ...this.list]
- return x;
- }
- unshift(x) {
- this.list = [...this.list, x]
- return x;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement