美文网首页
同步回调函数与异步回调函数

同步回调函数与异步回调函数

作者: 恋雨_恋星空 | 来源:发表于2020-09-16 15:24 被阅读0次

    //1.同步回调函数

    const arr=[1,2,3,4];

    arr.forEach(item=>{

    console.log(item)//同步回调函数不会放入队列,一上来就要执行完

    });

    console.log("forEach之后")

    //结果 1,2,3,4  forEach之后

    //2异步回调函数

    setTimeout(()=>{

    console.log("timeout")//异步回调函数,会放入队列中操作

    },0)

    console.log("timeout之后")

    //结果 timeout之后  timeout

    相关文章

      网友评论

          本文标题:同步回调函数与异步回调函数

          本文链接:https://www.haomeiwen.com/subject/jwxhyktx.html