How to remove item from a JavaScript object

by SriSri M

JavaScript

var obj={"name":"sri","age":"27"}
delete obj.name;
console.log(obj);