JSFiddle - React, Tailwind, and code Playground
by Kerrick
HTML
<!-- This triggers the bug in IE8. -->
<script>
window.myVar = 'hello world';
</script>
<script>
var myVar;
console.log(window.myVar); // Should be 'hello world'
</script>
<!-- This does not trigger the bug in IE8. -->
<script>
window.myOtherVar = 'hello world again';
var myOtherVar;
console.log(window.myOtherVar); // Should be 'hello world again'
</script>