Hi everyone having a tough time updating a value that I am storing in sessionstorage. I tried a few ways to target the nested objects values with no luck. Any help would be greatly appreciated.
Object I am creating in JavaScript
var projectInfo = {
project1: {
name: 'Unique name',
extraCredit: true
}
project2: {
name: 'Unique name',
extraCredit: true
}
}
How I am persisting to session
sessionStorage.setItem('projectInfo', JSON.stringify(projectInfo));
How do I target the nested project name in project info. For example
sessionStorage.setItem(projectInfo.project1.name, 'Student Fund raiser')