Code Monkey home page Code Monkey logo

jeloop-visualizer's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

jeloop-visualizer's Issues

Callback Queue should show only the callback function

Hi

During the execution of function three(), the setTimeout() function is displayed in the webapi section, and after completion of 1 second, the setTimeout() function is displayed in the callback queue. It's the callback function inside of the setTimeout that should be displayed in the callback queue section. Kindly check.

function three() {
  console.log("three");

  setTimeout(function () {
    console.log("last");
  }, 1000);
}

Function doesn't work as expected

I tried a function on the visualizer

function three() {
  console.log("three");

  setTimeout(function () {
    console.log("last");
  }, 1000);
  
    setTimeout(function () {
    console.log("first");
  }, 500);
}

The function is expected to worked as

console.log("first");

as first then

console.log("last");

But the visualizer shows

console.log("last");

first then

console.log("first");

The problem will confuse the users who want to visualize the event loop .

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.