Top 5 Javascript Things You Should Know!




🎁Support me on Patreon for exclusive episodes, discord and more!
https://www.patreon.com/dev_ed

In this episode we are going to take a look at the top 5 concepts you should know in javascript.

These concepts are good to learn after you are comfortable with the basic syntax of javascript and you want to dive deeper into what is happening under the hood.

We are going to take a look at things like how hoisting works, visualizing how our javascript code runs with the call stack.
A basic overview of callbacks and async await (deserves its own episode).

📕 Things covered in this video:
– Javascript Hoisting
– Call Stack
– IIFE
– Scope
– Event Loop, Web Api’s and callback queue
– Callbacks, async-await

🛴 Follow me on:

Twitter: https://twitter.com/deved94
Instagram: https://www.instagram.com/developedbyed/
Github: https://github.com/DevEdwin

#javascript #webdevelopment

Original source


48 responses to “Top 5 Javascript Things You Should Know!”

  1. Will i ever "have" or be required to use var? Because I'm learning JS, ive only ever used let and const in anything ive done. Why would i "have" to use var? If your answer is "you wont" then i dont need to learn about hoisting correct?

  2. Thanks for the video man! Loving your content!

    To anyone reading this:
    Subscribe to Ed and click the bell icon, we gotta make sure this man gets paid by YouTube so he can keep making awesome content like this!

  3. strange you typed the "correct" way to do an IIFE, then it changed to what Doug Crockford calls "dog balls notation". Both work, but I'd be confused if this was my first time seeing it.

    in case you are reading this and are confused:

    (function(){

    }()); <– "the correct way" inside all parentheses

    (function(){

    })(); <– "dog balls" outside parentheses. still works

  4. I was thinking… How do i know this guy, and from where…? That's crazy… But later on, i've come to the conclusion that is not you that i know, it's just your personality that reminds me of someone. Actually you can look it up, " Danil Ishutin " … Nice video btw, espcially 8:33 part ! 😀

  5. ehmm what do you mean with compiler? i thought javascript is an interpreter languange witch not work with compilers where every single line of code gets readed and executed immediately

Leave a Reply