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 |
How to create array in JavaScript?
What is console.log() and why it is used?
Event bubbling and Event Capturing in JavScript?
Taking a developer's perspective, do you think that that javascript is easy to learn and use?
Where do you put javascript in html?
I am working on project in asp.net in which i have opned doc file on client side.plz send me coding on markpatentoffice@yahoo.com.
Explain the working of timers in javascript?
Create a new javascript object with the keys of “fname” equal to your first name, “lname” equal to your last name, and “fcolors” equal to and array of 3 of your favorite colors. Assign this object to a variable called “me” and log it to the console.
What is push() method in javascript?
Explain prototypal/differential inheritance?
How to read a cookie using javascript?
What is a function constructor?