I'm learning about how a browser works and so far I've learned that browsers have a process called the renderer.
Part of the job of this process is to parse and run a JavaScript code when it finds one.
If that's the case, then where's the JavaScript engine?
Is it another name for the render process? Or is it another process that gets invoke when the render process sees a JavaScript source code? Or is it something that I'm totally unaware of?!
Appreciated if someone could explain this matter.