var student= {age:20, batch:"ABC"}; delete student.age;
// what is the function of delete operator in javascript let person= {age:20, name:"Chetan"}; delete person.age; console.log(person); //{ name: 'Chetan' }