On Wed, Nov 16, 2016 at 10:44 AM, 김대호 <[email protected]> wrote: > hello~ i'm beginner at javascript > > There are questions about the javascript event loop. > > i know there is only one thread in v8. > > Are event loop and v8 on same thread ? > > also, does setTimeout code works on seperate thread from v8 ?
V8 doesn't implement setTimeout(), the embedder (Chromium, Node.js) does. Whether it runs on a different thread is an implementation detail that should not matter and is not observable to JS land. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
