the "runtime" environment is the code that runs your code
function isEven (num) { if(num % 2 === 0) { return `${num} is even!`; } } console.log(isEven(10);
We have a program but...
V8 Engine:
Chrome Web Browser:
JS File
NodeJS
Read and reason through pre-written code
It is hard, most JS Developers don't have an understanding of this material
By Scott D'Alessandro