Why we can't access a variable defined in a constructor function. Below is the given condition.
var getEmployee = function(name){
var usrId = 9;
this.name = name;
}
var emp = new getEmployee("Karlie Kloss");
console.log(emp.usrId);