Question: Given the code below, how would you change the value for the username key to GA-Staff? var loginInfo = { username: GA-Guest, password: yellowpencil }
Given the code below, how would you change the value for the username key to "GA-Staff"? var loginInfo = { username: "GA-Guest", password: "yellowpencil" }
a. loginInfo.username = "GA-Staff";
b. loginInfo."username" = "GA-Staff";
c. loginInfo[username = "GA-Staff"];
d. loginInfo(username = "GA-Staff");
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
