依崇稀

导航

 

2020年12月16日

摘要: //const函数 const b=100; //数组 const list=[]; list[0]=10; list[1]=100; list[2]=1000; console.log(list)//对象 const obj={a:100}; obj.name='xiaowang'; obj.ti 阅读全文
posted @ 2020-12-16 09:48 依崇稀 阅读(55) 评论(0) 推荐(0) 编辑
 
摘要: <script>async function randomDelay(id) { // Delay between 0 and 1000 ms const delay = Math.random() * 1000; return new Promise((resolve) => setTimeout 阅读全文
posted @ 2020-12-16 09:33 依崇稀 阅读(199) 评论(0) 推荐(0) 编辑