Skip to content

Instantly share code, notes, and snippets.

@sjcotto
Created September 3, 2023 18:06
Show Gist options
  • Save sjcotto/24ee3d3195fd55ad1ec29b48a79750d5 to your computer and use it in GitHub Desktop.
Save sjcotto/24ee3d3195fd55ad1ec29b48a79750d5 to your computer and use it in GitHub Desktop.
(function() {
window.myTestObject = {
message: 'Hello from myTestObject!',
sayHello: function() {
console.log(this.message);
}
};
console.log('myTestObject has been attached to the window.');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment