Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Last active August 29, 2015 14:17
Show Gist options
  • Save vgaltes/ca54de9442359cb77f15 to your computer and use it in GitHub Desktop.
Save vgaltes/ca54de9442359cb77f15 to your computer and use it in GitHub Desktop.
This example 1
<script>
var hello = 'Hello from the outer space';
var aObject = {
hello : 'Hello from the earth'
}
var sayHello = function(){
console.log(this.hello);
}
aObject.sayHello = sayHello;
aObject.sayHello();
sayHello();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment