What does the delete operator do in JavaScript?
Answer / datta
delete operator deletes the property and its value
var student={age:30; branch:"CSE"};
delete student.age;
| Is This Answer Correct ? | 0 Yes | 0 No |
Example of using regular expressions for syntax checking in javascript?
What is the difference between var and let?
What is question mark in javascript?
What is a currying function?
How are object properties assigned?
What is the use of a map object in javascript?
Is there automatic type conversion in JavaScript?
What is the ‘Strict’ mode in JavaScript and how can it be enabled?
what is the difference between wrappers and primitives es: diff between int i=200 in primitives and integeri = new integer(54)
How to create an input box?
What is a method in javascript?
What is difference between java and javascript?