for example
//creating constructor function
function Something(){}
//adding name property to Something prototype
Something.prototype.name='javascript';
is it possible to access name property from its object itself?
//like
Something.name
// but here output will be 'undefined'
// code
function Fan(){}
Fan.prototype.speed='high';
Fan.speed
//output of (Fan.speed) undefined