CIW JavaScript Fundamentals exam 1D0-435 Question # 24 Topic 3 Discussion

CIW JavaScript Fundamentals exam 1D0-435 Question # 24 Topic 3 Discussion

1D0-435 Exam Topic 3 Question 24 Discussion:
Question #: 24
Topic #: 3

function empObject(name, age, department) {

this.name = name;

this.age = age;

this.department = department;

this.showOne = showOne;

}

The code above Defines a constructor function for a custom object named empObject. It contains three properties: name, age, and department. It contains one method: showOne


A.

TRUE


B.

FALSE


Get Premium 1D0-435 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.