Preview:
<!DOCTYPE html>
<html>
<body>
​
<h1>The JavaScript <i>this</i> Keyword</h1>
​
<p>In this example, <b>this</b> refers to the window object:</p>
​
<p id="demo"></p>
​
<script>
let x = this;
document.getElementById("demo").innerHTML = x;
</script>
​
</body>
</html>
​
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter