multithreading - Is there another thread (apart from the main thread) which keeps on polling on the async operation in Javascript? -
i understand javascript single threaded , event queue maintained in order handle events in fifo order. if main thread fires async operation , callback added event queue, there other background thread keeps polling on async operation , notifies event queue execute callback?
Comments
Post a Comment