blob: 906c0360edccbbb748b76b3b40e569689fb966ba [file] [log] [blame]
function Ridic(name, surname){
this.name = name;
this.surname = surname;
this.getName = function() {
return /*this is ugly comment*/this.name;
}
}
Ridic.prototype.getInfo = function () {
return "info";
}