0
How javascript works
want to know how javascript works
1 Réponse
+ 2
That's a very broad question. JavaScript itself is an interpreted language meaning that it's "read" on the fly during execution by the engine. This is different then a compiled language where it's translated into machine code during development by a compiler. Interpreted languages are slower than compiled languages but are more portable since they're interpreted by the engine which is built for each platform.