JS Coding Questions Logo
JS Coding Questions
#98💼 Interview

Is JavaScript a compiled or interpreted language

Advertisement

728x90

JavaScript is an interpreted language, not a compiled language. An interpreter in the browser reads over the JavaScript code, interprets each line, and runs it. Nowadays modern browsers use a technology known as Just-In-Time (JIT) compilation, which compiles JavaScript to executable bytecode just as it is about to run.

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 13

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
98of476