Created
November 2, 2012 16:33
-
-
Save anton-rudeshko/4002475 to your computer and use it in GitHub Desktop.
Blogger test gist
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
function sayHello() { | |
console && console.log('Hello'); | |
} | |
function Person(name, age) { | |
this.name = name; | |
this.age = age; | |
} | |
var aaaa = new Person('aaaa', 12) | |
aaaa.sayHello = sayHello; | |
aaaa.sayHello(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment