Compare a property of two objects

Report a typo

What will be shown in the console if you run this code?

const user = { login: 'user', password: '1234' };
const user1 = user;
user1.password = 'qwerty';

console.log( user.password === user1.password );

Write your answer in one word in lowercase without any punctuation.

Enter a short text
___

Create a free account to access the full topic