javascriptvirtual-machinev8javascript-enginechakra

Javascript engines and virtual machines similaraties?


this is a very simple question that i cannot seem to find answers for:

Are javascript engines such as chromes V8 and Internet Explorers Chakra (in EI9+) similar in function to virtual machines for languages such as Java?


Solution

  • Browser interprets and executes the js code directly while for virtual machine executes the byte-code. Java code (a “.java” file) compiled turns into a “.class” file that contains the compiled Java bytecode, which can then be read and understood by the Java Virtual Machine. The JVM, in turn, takes the compiled Java bytecode and then runs, or executes, the code.