Giter Site home page Giter Site logo

Comments (4)

mohanadft avatar mohanadft commented on June 1, 2024 1

Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope before code execution by the parser which reads the source code into an intermediate representation before the actual execution starts by the JavaScript interpreter.

Before any execution, and before interpreting the code, hoisting is done during the parsing phase.

from 30-seconds-of-code.

mohanadft avatar mohanadft commented on June 1, 2024 1

Moreover, for the one who want to make a pull request, you might add that hoisting is done only in non-strict mode, and can be avoided by using "use strict" at the beginning of the file.

You can reference for "use strict" from a previous code snippet.

from 30-seconds-of-code.

Chalarangelo avatar Chalarangelo commented on June 1, 2024

It might be a little confusing, but technically it's true as JavaScript engines use a JIT (just in time) compiler to execute the code. If you can suggest a less confusing explanation that won't complicate things for beginners, feel free to comment down below as it might be worthwhile.

from 30-seconds-of-code.

kamtoeddy avatar kamtoeddy commented on June 1, 2024

Awesome

Your response is spot-on. We could say something like "Before your JavaScript code is executed, it is first parsed and compiled(just-in-time compilation)".

I think putting JIT there and a link to a resource that will provide more clarity on what JIT is all about. This could even be a small(yet detailed enough) paragraph at the end of the article if you like

from 30-seconds-of-code.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.