Where can I find Advanced Javascript materials in Portuguese? [closed]

-2

Most of the tutorials are with the basic part of Javascript. Where can I find an advanced topic on JS or materials? For example on registerElement() , createElement() , Protype .

    
asked by anonymous 12.01.2016 / 18:55

1 answer

1

Friend, there is a series that I consider advanced, not by addressing the topics that you talked about more by diving into the bowels of javascript. The series is called You Do not Know JS and is available for free on github ( link ), you too you can read the book Eloquent Javascript ( link ).

But I truly believe that you will only find more advanced things when you begin to delve into a particular subject because after all today Javascript has already broken the barriers of simple manipulation of the DOM. You can find Neural Networks ( link ), robotica ( link ) and a series of more advanced subjects in javascript, but you need to decide what the focus is.

And the specification should also be a fundamental reading if you want to see more advanced things, after all, the advanced one is due to a solid understanding of the basics, and also javascript is no longer just a DOM manipulation language, have this in mind and you will find what you are looking for.

    
12.01.2016 / 19:17