Refer to code below:
function Person() {
this.firstName = 'John';
}
Person.prototype ={
Job: x => 'Developer'
};
const myFather = new Person();
const result=myFather.firstName + ' ' + myFather.job();
What is the value of the result after line 10 executes?
Enola
9 days agoShelia
17 days agoGracia
18 days agoPatti
19 days agoGracia
24 days ago