Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
460 views
in Technique[技术] by (71.8m points)

javascript - How does .then(console.log()) and .then(() => console.log()) in a promise chain differ in execution

Is there any difference in efficiency? Will the behavior be any different if a setTimeout is used instead of console.log()

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can basically do these three things

.then(console.log())

This calls the console.log immediately, without waiting until the promise is resolved, so it is not probably something that you would want to do.


.then(console.log)

This executes the console.log only after the promise has successfully resolved (requires one function call) and implicitly pass the result of the promise to to the console.log function.


.then(() => console.log())

Same as before, requires 2 function calls but you can easily pass some other arguments to it.


To pass additional argument to the console.log in the second case, you need to use Function.prototype.bind method.

const promise = new Promise((resolve, reject) => {
  resolve('');
});
promise.then(console.log.bind(console, 'new arg'));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...