**A property is shown like this:**
object.property;
object.length;
**A method like this:**
object.method();
object.reverse();
===== IF =====
An if statement is basically a true or false check.
It is written like this
if (condition){
if condition true this happens;
}
===== Loops =====
To iterate events different type of loops exist.
* For
* While
* Do while