var people = {"name": "Akshar"};
var friends = {name: "Prahlad"};
As shown in the sample code above. I have two objects where one has the 'name' key within double quotes and the other one is without it. When I printed them to the console with dot or bracket notation, it printed the values for both without any issue. So does it make a difference whether I write the keys with the doubles quotes or not? Is there any difference between the two?