Deez

function checkScope(){
    "use Strict";
    let i = "pokfsehiujfhiu d";
if (true){
    let i = "efshyuifhs d";
    console.log("Block Scope i is:" , i);
}
console.log("Fuction Scope i is: " , i);
return i;
}
Dull Dormouse