Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.46 KB

File metadata and controls

27 lines (21 loc) · 1.46 KB

Javascript (from my point of view)

In this section I am going to be writing interesting information about Javascript that I have experienced / read.

70% of a developer's time is spent reading code!
I would suggest understanding better the language and its core functionalities would help us improve our code and spend less time reading and more time writing.

So, first of all something very important is that the web console, node etc. are JavaScript-like. They are not behaving as the core Javascript spec expects. The only way to do that is to write Javascript on an empty file and run it on the browser!

Second of all always have the Official Javascript Specs opened on a tab and visit it every time you have a doubt about something.

You can follow the order in which I wrote them or just jump to the subject that interests you the most:

  1. Primitive Types
  2. Natives
  3. Abstract Operations
  4. Explicit Coercion
  5. Implicit Coercion
  6. Javascript is a Compiled Language
  7. Anonymous and Named Function Expressions
  8. Scope
  9. Hoisting
  10. Closure
  11. Modules
  12. new keyword
  13. This
  14. FE generic questions