Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 239 Bytes

优雅or装逼.md

File metadata and controls

9 lines (8 loc) · 239 Bytes

让自己的代码更优(nan)雅(dong)一些

function sleep(time) {
    return new Promise(res => setTimeout(res, time))
}
let duration = 2000
sleep(duration).then(res => console.log(`延迟了${duration}ms`))