2021-11-25 14:40:42 +01:00

7 lines
143 B
JavaScript
Executable File

let varContainingFunction = function () {
let varInFunction = "I'm in a function.";
console.log("hi there!");
};
varContainingFunction();