{
"result": {
"heroes": [
{
"name": "npc_dota_hero_antimage",
"id": 1
},
{
"name": "npc_dota_hero_axe",
I hereby claim:
- I am twisterghost on github.
- I am twisterghost (https://keybase.io/twisterghost) on keybase.
- I have a public key ASA4gpA6b3N8-WCESHdVDBRG9_CeBBY_TXIKBPAyQ82CAAo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var assert = require('assert'); | |
// Define parent "class" | |
var Parent = function Parent(name) { | |
this.name = name; | |
this.isYoung = false; | |
}; | |
Parent.prototype.speak = function speak() { | |
console.log('Hello, my name is ' + this.name); |