Course · Section 14: Object-Oriented Programming (OOP) With JavaScript · Lecture 226: ES6 Classes
Define a `Person` class with a `fullName` getter, and implement `fullNameOf(first, last)` returning the full name.
+ 1 hidden test run on Submit.
A getter computes a value accessed as a property, here joining first and last names.
Run your code to see results.