what is the function of delete operator in javascript

Solutions on MaxInterview for what is the function of delete operator in javascript by the best coders in the world

showing results for - "what is the function of delete operator in javascript"
Luana
14 May 2016
1var student= {age:20, batch:"ABC"};
2delete student.age;