Warning: Undefined array key "stylesheets" in /customers/8/7/8/dwpdesign.se/httpd.www/dokuwiki/inc/StyleUtils.php on line 102

Table of Contents

Java Script

Objects

Everything in Java Script can be a object. Objects have properties and methods.

**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.