3

Im learning Javascript, where can I find some documentation about the methods and classes of this language?

Comments
  • 3
    For documentation I normally go with MDN (Mozilla Development Network)

    https://developer.mozilla.org/en-US...
  • 1
    Check out funfunfunction and Wes Bos on youtube. Both superb resources.

    Also I see you mention methods and classes. Just be open to JavaScript being very different than other OOP languages. In fact functional programming is very popular in JavaScript now, where you don't use classes at all. (Some people will use a mixture of OOP and FP though).
  • 0
    @tobich Thanks I will see
  • 1
    @boottape Thanks man I'll look at that and see how it works.
  • 0
    Look no further than JavaScript.com
  • 0
    I think OOP is the programming paradigm most used.
  • 0
    @nitaj96a definitely. Classical inheritance in JS I find to be even worse than in other languages but prototypes are great! Pure functions for me are the future (we'll still need OOP though).
Add Comment