写promise异步函数的时候,发现有两种写法,一种是菜鸟教程里面的
var n = new Promise(function (resolve, reject) {
resolve();
});
第二种是公司别人写的:
var n = new Promise(resolve => {
resolve();
});
然后百度查了下,一般情况下是没区别,如果函数里面用到了this,指向不一样。
参考:https://blog.csdn.net/github_38851471/article/details/79446722