9A0-384 Exam QuestionsBrowse all questions from this exam

9A0-384 Exam - Question 17


How do you delete a property inside a Node object?

Show Answer
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

1 comment
Sign in to comment
sivaaem
Nov 2, 2020

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