Skip to content

Instantly share code, notes, and snippets.

@jawache
Created March 13, 2016 17:34
Show Gist options
  • Save jawache/c69d6f5633d81835c950 to your computer and use it in GitHub Desktop.
Save jawache/c69d6f5633d81835c950 to your computer and use it in GitHub Desktop.
// What does the below code print out?
"use strict";
var animal = {
kind: "Cow",
which: function () {
console.log(this.kind);
}
};
animal.which();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment