normally javascript runs line by line one thing at a time… that is called synchronous
everything waits for previous line to finish
Asynchronous doesn’t wait. it lets something run in the background and moves on immediately.
normally javascript runs line by line one thing at a time… that is called synchronous
everything waits for previous line to finish
Asynchronous doesn’t wait. it lets something run in the background and moves on immediately.