Skip to content

Instantly share code, notes, and snippets.

View anton-rudeshko's full-sized avatar
❄️
Snowflake

Anton Rudeshko anton-rudeshko

❄️
Snowflake
View GitHub Profile
@anton-rudeshko
anton-rudeshko / blogger-test.js
Created November 2, 2012 16:33
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)