Getters and Setters

Learn about getters and setters in OOP.

We'll cover the following...

Get and set

In order to allow controlled access to properties from outside the class, getter and setter methods are used.

A getter method allows reading a property’s value. ...