刷题记录


js 基础

https://www.nowcoder.com/questionTerminal/905943ae163f408e9cd38d5d68afc358

  1. js 中取余运算会将字符串强制转为数字

https://www.nowcoder.com/questionTerminal/d4902e0e162e4befb1534f99bc9b4543

  1. Node 中的“微任务(microtasks)其实是一个统称,包含了两部分: * process.nextTick() 注册的回调 (nextTick task queue)
  • promise.then() 注册的回调 (promise task queue)

Node 在执行微任务时, 会优先执行 nextTick task queue 中的任务,执行完之后会接着执行 promise task queue 中的任务。所以如果 process.nextTick 的回调与 promise.then 的回调都处于主线程或事件循环中的同一阶段, process.nextTick 的回调要优先于 promise.then 的回调执行。


Author: pkq
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint policy. If reproduced, please indicate source pkq !
  TOC