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 |
Define closure.
Does javascript support foreach loop?
What will happen if an infinite while loop is run in Javascript?
What output will the program produce: System.out.println(x+"+"+y+"="+(x+y));
What is the use of a weakmap object in javascript?
How will you create new object in javascript?
What is hoisting in javascript?
What are nodes in javascript?
Example of using regular expressions for syntax checking in javascript?
How to write a comment in javascript?
Is javascript case sensitive language?
Is javascript necessary for web development?