logo

Crowdly

Browser

Add to Chrome

Чи буде змінено об'єкт profile після виконання цього коду? let profile = {  ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Чи буде змінено об'єкт profile після виконання цього коду?

let profile = {

     userLogin : 'admin',

     role : 'administrator',

     firstName: 'Mat',

     secondName: ''

}

function setSecondName (userInfo, secondName = 'Unknown') {

     if (typeof userInfo !== 'object') {

         return false;

     } else {

         userInfo.secondName = secondName;

     }  

}

setSecondName(profile, 'Damon');

50%
0%
0%
More questions like this

Want instant access to all verified answers on moodle.chnu.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome