Books for javascript

hi i picked up a beginners book on javascript, but wanted to know from users here what are the books that could turn me ino a pro within a year of serious learning.

There are several books here which you might find useful.

1 Like

Eloquent JavaScript is still one of my favourites and it’s free to read online.
http://eloquentjavascript.net/00_intro.html

My one tip would be to learn JavaScript itself and not library abstractions.
Another great way to level up is to learn how utility libraries work. If you can write the most used functions from http://underscorejs.org/docs/underscore.html (map, filter, reduce, debounce, groupBy) by hand you have advanced JavaScript knowledge.

Underscore is a great learning resource because one of their key aims is to make the source readable so you can learn from it.

2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.