Cho đoạn code sau, kết quả là: const a = { stringField: 'Joe', nestedField: { field: 'Nested' }, functionField: () => 'aReturn' }; const b = Object.assign({}, a); b.stringField = '...

Câu hỏi :

Cho đoạn code sau, kết quả là:
const a = {
stringField: 'Joe',
nestedField: { field: 'Nested' },
functionField: () => 'aReturn'
};
const b = Object.assign({}, a);
b.stringField = 'Bob';
b.nestedField.field = 'Changed';
b.functionField = () => 'bReturn';
console.log(
a.stringField,
a.nestedField.field,
a.functionField()
);

A. Joe Nested aReturn

B. Bob Changed bReturn

C. Joe Changed aReturn

D. Bob Nested bReturn

* Đáp án

* Hướng dẫn giải

Chọn đáp án C

Câu hỏi trên thuộc đề trắc nghiệm dưới đây !

250 Câu hỏi trắc nghiệm Javascript, CSS, HTML có đáp án !!

Số câu hỏi: 248

Copyright © 2021 HOCTAP247