“setimmediate” Ответ

JavaScript Image XSS

<img src='#' onerror=alert(1) />
TC5550

setimmediate

JS
copy
setImmediate(() => {
  //run something
})
//How is setImmediate() different from setTimeout(() => {}, 0)
//(passing a 0ms timeout), and from process.nextTick()?
//A function passed to process.nextTick()
//is going to be executed on the current iteration of the event loop, 
//after the current operation ends.
//This means it will always execute before setTimeout and setImmediate.
//A setTimeout() callback with a 0ms delay is very similar to setImmediate().
//The execution order will depend on various factors, but they will be both run
//in the next iteration of the event loop
Gogo

Setimmediate JavaScript

var immediateID = setImmediate(func, [param1, param2, ...]);
var immediateID = setImmediate(func); // only works with node js and internet explorer
// you can use settimeout with 0 time instead
Gogo

Ответы похожие на “setimmediate”

Вопросы похожие на “setimmediate”

Смотреть популярные ответы по языку

Смотреть другие языки программирования