The names are being joined last first.
Acceptance criteria
- 1.#out should show Ada Lovelace.
The names are being joined last first.
const person = { first: "Ada", last: "Lovelace", get fullName() { return this.last + " " + this.first; } }; document.querySelector('#out').textContent = person.fullName;
Output ready when you are
Press Run to render your code, or Submit to validate your solution.