hoistedLet = "I'm not gonna be hoisted 👎"; // assigning variable

var h1 = document.createElement('h1');
h1.textContent += "Where is my " + hoistedLet;
document.body.appendChild(h1);

let hoistedLet; //let declaration
const hoistedConst; //const declaration

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.