Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 156 Bytes

section14.3.md

File metadata and controls

9 lines (8 loc) · 156 Bytes

Section 14.3: setTimeout promisified

function wait(ms) {
  return new Promise(function (resolve, reject) {
    setTimeout(resolve, ms);
  })
}