var p3 = new Promise ((resolve, reject) = > {
setTimeout (resolve, 100, "foo");
});
p3 returns a promise object, and the value taken with the then method is" foo", what is the implementation flow? I hope there are bosses who can popularize science.