Add a Getter for a Computed Property

The class Rectangle stores a width and a height. Add a getter area that returns the width multiplied by the height. The getter should be callable like a property: rect.area.
JavaScript
Console