Javascript

Structured map of Javascript's functions and parameters.

Get Started. It's Free
or sign up with your email address
Javascript by Mind Map: Javascript

1. push()

2. if ... else ... else if

3. Statements

3.1. Loops

3.1.1. Loop Modifier *

3.1.1.1. break

3.1.1.2. continue

3.1.1.3. return

3.1.2. while

3.1.3. do...while

3.1.4. for()

3.1.5. for ... in

4. Decisions

4.1. switch

4.2. return

5. Functions

5.1. String

5.1.1. charAt()

5.1.2. replace()

5.1.3. slice()

5.1.4. split()

5.1.5. substr()

5.1.6. toLowerCase()

5.1.7. toUpperCase()

5.1.8. toString()

5.1.9. trim()

5.2. Number

5.2.1. isInteger()

5.2.2. isNaN()

5.2.3. toFixed(x)

5.2.4. toString()

5.3. Array

5.3.1. indexOf()

5.3.2. join()

5.3.3. isArray()

5.3.4. pop()

5.3.5. shift()

5.3.6. slice()

5.3.7. toString()

5.3.8. sort()

5.4. Boolean

5.4.1. toString()

6. Arithmetic Operators

6.1. +

6.1.1. x = y + 2

6.2. -

6.2.1. x = y - 2

6.3. *

6.3.1. x = y * 2

6.4. /

6.4.1. x = y / 2

6.5. %

6.5.1. x = y % 2

6.6. ++

6.6.1. x=x+1

6.7. --

6.7.1. x=x-1

7. Events

7.1. Mouse Events

7.1.1. onclick

7.1.2. ondblclick

7.1.3. onmouseover

7.1.4. onmouseout

7.2. Keyboard Events

7.2.1. onkeydown

7.2.2. onkeypress

7.2.3. onkeyup

7.3. Object Events

7.3.1. onload

7.3.2. onscroll

7.4. Form Events

7.4.1. onblur

7.4.2. onchange

7.4.3. onsubmit

8. Operators

8.1. Assignment Operators

8.1.1. =

8.1.1.1. x = y

8.1.2. +=

8.1.2.1. x = x + y

8.1.3. -=

8.1.3.1. x = x - y

8.1.4. *=

8.1.4.1. x = x * y

8.1.5. /=

8.1.5.1. x = x / y

8.1.6. %=

8.1.6.1. x = x % y

8.2. String Operators

8.2.1. +

8.2.1.1. text3 = text1 + text2

8.2.2. +=

8.2.2.1. text1 += text2

8.3. Comparison Operators

8.3.1. ==

8.3.1.1. equal to

8.3.2. ===

8.3.2.1. equal value and equal type

8.3.3. !=

8.3.3.1. Not equal

8.3.4. !==

8.3.4.1. not equal value or not equal type

8.3.5. >

8.3.5.1. greater than

8.3.6. <

8.3.6.1. less than

8.3.7. >=

8.3.7.1. greater than or equal to

8.3.8. <=

8.4. Logical Operators

8.4.1. &&

8.4.1.1. and: (x < 10 && y > 1) is true

8.4.2. ||

8.4.2.1. or: (x === 5 || y === 5) is false

8.4.3. !

8.4.3.1. not: !(x === y) is true

9. less than or equal to