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
V8 Engine:
NodeJS
JS File
Read and reason through pre-written code
It is hard, most JS Developers don't have an understanding of this material