是异步所需的回调函数

问题描述 投票:0回答:2

诸如setTimeout,Fetch和setInterval之类的异步函数都具有类似于具有回调函数的模式。那些我们需要的数据可用,我们可以使用That回调函数来对其进行操作。我的问题是我们是否可以考虑回调始终是异步的?

javascript asynchronous callback
2个回答
3
投票

编号

例如,传递给Array.prototype.map()的回调被同步解析。


0
投票

不必异步。请考虑以下示例。

Array.prototype.map()

此代码的输出看起来像这样

console.log("This will print at the start")
const _data = [1,2,3,4,5,6]
_data.forEach(_data=>{
    console.log(_data)
})
console.log("This will print at the end")
© www.soinside.com 2019 - 2024. All rights reserved.