回调函数

        function a(x,callback) {
            setTimeout(() => {
                typeof(callback)===‘function‘&&callback(x);
            }, 2000);
        }

        a(789,function (num) {
            console.log(num)
        })

 

回调函数

上一篇:centos无法建立ssl连接


下一篇:Go-channel