const person = {
age: 30,
firstName: 'John',
lastName: 'Doe',
};
const x = person;
x.age = 65;
x.firstName = 'Adam';
x.lastName = 'Karpov';
console.log(x.age);
console.log(x.firstName);
console.log(x.lastName);
For further actions, you may consider blocking this person and/or reporting abuse

Top comments (0)