| 123456789101112131415161718192021222324252627282930 | 
							- <!DOCTYPE html>
 
- <html lang="en">
 
- <head>
 
-   <meta charset="UTF-8">
 
-   <meta http-equiv="X-UA-Compatible" content="IE=edge">
 
-   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
-   <title>Document</title>
 
- </head>
 
- <body>
 
-   <script>
 
-     /* resolve方法不会终端函数运行 */
 
-     console.log('start')
 
-     
 
-     const p = new Promise((resolve, reject) => {
 
-       console.log(1)
 
-       resolve(2)
 
-       console.log(3)
 
-     })
 
-     p.then(res => {
 
-       console.log(res)
 
-     })
 
-     console.log('end')
 
-   </script>
 
- </body>
 
- </html>
 
 
  |