Exam 9A0-384 All QuestionsBrowse all questions from this exam
Question 17

How do you delete a property inside a Node object?

    Correct Answer: B

    In Node.js, to delete a property from an object, you use `setProperty` with property name and null. This will remove the property from the node object.

Discussion
sivaaem

node.setProperty("propertyName",(Value)null);