JSFiddle - React, Tailwind, and code Playground

by Mike Jacobson

JavaScript

(async function() {

  function iterateArray(arr) {
    for await (const item of arr) {

    }
  }
  
  const p1 = new Promise(resolve => {
  	console.log('p1');
    setTimeout(() => {})
  
  });


})();