Blog.prototype.signature = "TEXT"
did this statement here created a signature variable?
because this statement didnt have var keyword in it.
Also additional question
why need to use function literals or function reference to make a function inside the prototype of an object?
ex. this wont work....
obj.prototype.toString{
return "dfasdfa";
}