script-mutate.js (389B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 function mutate() { 4 const phonebook = { 5 S: { 6 sarah: { 7 lastName: "Doe" 8 }, 9 serena: { 10 lastName: "Williams" 11 } 12 } 13 }; 14 15 debugger; 16 phonebook.S.sarah.lastName = "Pierce"; 17 debugger; 18 phonebook.S.sarah.timezone = "PST"; 19 debugger; 20 }