본문 바로가기

salesforce certification

(14/60) Refer to the code below:Function Person(firstName, lastName, eyecolor) {this.firstName =firstName;this.lastName = lastName;this.eyeColor = eyeColor;}Person.job = 'Developer';const myFather = new Person('John', 'Doe');console.log(myFather.job);Wh..