Salesforce JavaScript-Developer-I Question Answer
Given the code below:
01 function Person() {
02 this.firstName = ' John ' ;
03 }
04
05 Person.proto = {
06 job: x = > ' Developer '
07 });
08
09 const myFather = new Person();
10 const result = myFather.firstName + ' ' + myFather.job();
What is the value of result when line 10 executes?
Salesforce JavaScript-Developer-I Summary
- Vendor: Salesforce
- Product: JavaScript-Developer-I
- Update on: Jul 6, 2026
- Questions: 147

