Linked List Javascript implementation

preview_player
Показать описание
Learn how to implement a single pointer linked list in javascript

Read Article:

source code:

playlist:

blog

follow @:
Рекомендации по теме
Комментарии
Автор

Thanks man! This video helped me a lot! 😃

piosso
Автор

you are my hero, thanks for this type of tutorials, keep it up!!

danielvnzla
Автор

Thanks, You've such a great content!
i'm just wondering if we do this if we have a head element
head = element ? { element, next: null } : null
size = head !== null ? 1 : 0;
What do you think ?

takisnani