JS中的异步操作有哪些

JS中的异步操作:
1、定时器都是异步操作
2、事件绑定都是异步操作
3、AJAX中一般我们都采取异步操作(也可以同步)
4、回调函数可以理解为异步(不是严谨的异步操作)


 参考:

 https://www.cnblogs.com/yelongsan/p/6296700.html

https://blog.csdn.net/Wangxinlei_King/article/details/101082878

https://blog.csdn.net/u012475786/article/details/91415562

原文地址:https://www.cnblogs.com/zhangchs/p/13439854.html