Files
JavaScript-from-Beginner-to…/Chapter 14/Code Samples/ch14.js
T
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();