Classes
Classes are a grouping of functions and variables
Define class
You can create a class using the kalasi
keyword
Methods
To add some behavior to the class you can create a method (same way you write a function)
Methods can also take arguments
Properties
To add properties in a class, create a new variable in the class scope
Create Object
After you define a class time to final use it, you can use a class by creating a new object
You can now call methods on that class