Object Descriptors & Property Flags

What will be displayed when a setter validation fails?
const user = {
  get name() {
    return this._name;
  },
  set name(value) {
    if (value.length < 3) {
      throw new Error('Name too short');
    }
    this._name = value;
  }
};

user.name = 'John';
console.log(user.name);
try {
  user.name = 'Jo';
} catch (e) {
  console.log(e.message);
}
Next Question (16/40)