The order

Report a typo

Move the cards in the same order that they are going to appear in the console after the following code is executed:

function func() {

  console.log('First block');

  setTimeout(function f() {
    console.log('Second block');
  });

  console.log('Third block');

  setTimeout(function f1() {
    console.log('Fourth block');
  }, 0);

  console.log('Fifth block');

}
Put the items in the correct order
Fourth block
Second block
First block
Fifth block
Third block
___

Create a free account to access the full topic