Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Last active May 16, 2016 10:10
Show Gist options
  • Save mariyadiminsky/4b1bfee816d8596f493d2082f5fa7d53 to your computer and use it in GitHub Desktop.
Save mariyadiminsky/4b1bfee816d8596f493d2082f5fa7d53 to your computer and use it in GitHub Desktop.
// Test it here: https://jsfiddle.net/maasha/x7wz1686/
var bunny = {
name: 'Usagi',
showName: function() {
alert(this.name);
}
};
bunny.showName(); // Usagi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment