Have you ever wanted to understand the performance of your asynchronous javascript code? If you have had to do it, it is quite likely that you used console.time('event') and console.timeEnd('event'). This will only give you basic logs. What about if ...