This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

The JavaScript this Keyword

In this example, this refers to the the window object:

document.getElementById("demo").innerHTML = myFunction();

function myFunction() {
  return this;
}