In all the articles it is written that JavaScript is a prototype-based language, meaning that every object has a prototype (or, more precisely, prototype chain).
So
var F = function(); F.prototype.member1 = 1; var intance = new F(); console.log(instance['member1']);