It should be the prototype of the constructor function, and not the object created by this function:
a.prototype.three = 3;
You cannot access the prototype of an object using the key prototype, because the link to the prototype does not display like that. You can do this using a __proto__property, but it is deprecated. If you need a prototype of an object, you can use the method Object.getPrototypeOf:
Object.getPrototypeOf(j) === a.prototype;
, "prototype" . - , , . - , .