"use strict";
console.log(a);
document.write(a);
var a = 1;
hoisted(); // Output: "This function has been hoisted."
function hoisted() {
console.log('This function has been hoisted.');
document.write("Hoisted");
};
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.