I want to create a dictionary in JavaScript by checking for the objects property.
var item = {};
if(item.hasOwnProperty("xyz")){
//do wat is required
}else{
//add the key property to the item object
}
How to add this "xyz" key property to the object is my question.
Thanks