What is the difference between asm.js and WebAssembly?
Is asm.js code compiled in time and run? Compiled into what? asm.js is regular javascript code, and is compiled into bytecode by the JS interpreter as always. However, an interpreter with asm support is supposed to do ahead-of-time compilation, and possibly to generate more efficient code representation because of the static typing. See http://asmjs.org/ for … Read more