Asynchronous JavaScript
In javascript we uptill now have done all the syncronous tasks, we print something, add 2 numbers and get our job done, but what if there is a huge operation that might take a lot of time to complete, how will we handle that case? We either want to p...