00:53
<Mathieu Hofman>
(function() {
"use strict";
{
    var a = 1;
    console.log(a); //1
}
console.log(a); // 1
})();
console.log(globalThis.a); // undefined
01:40
<rkirsling>
that shouldn't require "use strict" though