Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

javascript - Confusion with how thenable callback works in Promise?

I am new to JS and was learning promises. The code excerpt I want to show is this

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

or simply

promisedFunction.then(console.log)

which is equivalent of the former code excerpt. The question is how is that possible to just use then(console.log) instead of then(data=>console.log(data))? Does it mean that we can omit the passed-from-promise data in thenable callback?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

data=>console.log(data) is a function that takes a parameter and calls a method with the passed in argument.

If you pass console.log it will execute the same method and still pass the same argument.

In effect you are dropping the extra function call - slightly more abstractly, imagine this:

//some function `f`
const f = x => x + 1;

//different function `g` that just forwards the call to `f`:
const g = x => f(x);

console.log(g(41)); //42

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...