Skip to content

Instantly share code, notes, and snippets.

@anton-rudeshko
Created November 2, 2012 16:33
Show Gist options
  • Save anton-rudeshko/4002475 to your computer and use it in GitHub Desktop.
Save anton-rudeshko/4002475 to your computer and use it in GitHub Desktop.
Blogger test gist
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