Skip to content

Instantly share code, notes, and snippets.

@renatooliveira
Created December 15, 2015 12:23
Show Gist options
  • Save renatooliveira/ff7892a4d06b535d374a to your computer and use it in GitHub Desktop.
Save renatooliveira/ff7892a4d06b535d374a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
this.a = 'f';
this.f = function (a) {
console.log('f ' + this.a + ' ' + a);
};
this.f2 = {
a: 'f2',
f: function () {
console.log('f2 ' + this.a);
}
};
f(30);
f2.f();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment