JavaScript
console.log("Hello from JS");JS, Python, PHP runtime execution explanation
Interpreted languages usually execute code directly or line by line during runtime.
A teacher asks a question and the student answers immediately. That is like direct runtime execution.
Interpreted does not mean no rules. Syntax rules still matter.
console.log("Hello from JS");cout<<"Compiled style";print("Hello from Python")<?php echo "Hello from PHP"; ?>Interpreted language = direct runtime execution.