What value is obtained when accessing myObject['lastName'] in the following code?
const myObject = {
name: 'Bob',
lastName: 'Johnson'
};
What value is obtained when accessing myObject['lastName'] in the following code?
const myObject = {
name: 'Bob',
lastName: 'Johnson'
};