"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");
};

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.