单选题(2 x 20) 1. 链表结点问题; 2. A类网络最大主机数; 3. CSS权重(考察!important); 4. 字符串的子串数(公式:n(n+1)/2+1 ); 5. async/await + promise + setTimeout 执行顺序; JavaScript async function async1() { console.log('async1 start'); // 2 await async2(); console.log('asnyc1 end'); /...