Whats the difference between Polymers this.async, Promise.then and setTimeout function?
My understanding:
this.async and Promise.then moves a Task to the end of the current Stack and setTimeout is handled as new Task and executed in the next loop when the eventloop takes a new task from the queue?
Please correct me if I am wrong.