JSON Homework
JSON Homework
// CODE_RUNNER: JSON Homework
const resume = {
fullName: "Aadi Saini",
email: "12sainiaadi@gmail.com",
education: "9th grade",
// Nested object
address: {
street: "1900 Spindrift Dr",
city: "San Diego",
state: "California",
country: "USA"
},
// Array of strings
skills: ["Grit", "Organization", "Curious"]
};
console.log(resume.fullName);
console.log(resume.email);
console.log(resume.address.city);
const jsonString = JSON.stringify(resume);
console.log(jsonString);