字节笔试

2019-12-16  本文已影响0人  心_c2a2

简答题

编程题

let arr = [1,2,[3,[4,5]],6]

// 返回 3
let arr = ['ab','b','ab','c']

// 返回 ['ab1','b','ab2','c']

填空题

console.log(1);
let a = new Promise((_, reject) => {
  console.log(2);
  reject(3);
})
  .then(console.log)
  .catch(console.log)
  .then(() => 4);
console.log(5);
a.then(console.log);

求输出顺序

上一篇下一篇

猜你喜欢

热点阅读