23. 手撕代码,让程序能睡一秒 ~~~ let a = 1; setTimeout(() => { a = 2; }, 1000); let a = 1; await sleep(1000); a = 2; function sleep(ms) { } ~~~