DEV Community

Discussion on: What do you wish to know about JavaScript when you were in university?

Collapse
 
marcoslooten profile image
Marco Slooten

Learning JavaScript, there where some things that took a while to understand:

  • re-assigning versus copying over an array or object
  • scope
  • what is 'this'
  • not doing everything with a for-loop (in other words, use array methods like .map())

Back in uni, I would've been impressed with just a little DOM manipulation though!