Regarding Promises/A+ Specification, what is the difference between the terms “thenable” and “promise”?
So What is the difference between the terms “thenable” and “promise”? I think the section you’ve already cited does answer this very well: A thenable is an object with a then method. Any object. A promise is an object with a then method (i.e. a thenable) that conforms to the specification. So far so simple. … Read more