To make our person class, we first need to define its members, i.e., properties and methods.
Every person has a name, a gender, and an age. These are the properties of our person class. Furthermore, a person can perform certain actions such as walking and talking. These are the methods of our function class.
When we use our person class to create a person, we will create an instance of a person with its unique properties. We can create multiple instances using the same class.