Hello everyone, my code couldn’t run in the console, it shows that there’s an error(not syntax), if anyone can help me to find my mistake then i appreciate it, and thanks
This is the code;
let myFullName = {firstName: "Bushra",_$SecondName: "Abdulsalam", _La_st__na_me: "Ghames"};
Object.freeze(myFullName);
let myFirstName = myFullName.firstName;
const mySecondName = myFullName._$SecondName;
const myLastName = myFullName._La_st__na_me;
let {firstName: myFirstName, _$SecondName: mySecondName, _La_st__na_me: myLastName } = myFullName;
console.log(myFullName);
**Your browser information:
Link to the challenge: