You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
541 B
32 lines
541 B
# Javascript Fundamentals Review
|
|
|
|
## Primative Data Types
|
|
|
|
Javascript has several basic data types:
|
|
|
|
```Javascript
|
|
'this is a string' // string (text)
|
|
123 // number (int)
|
|
1.2 // number (float)
|
|
true // boolean
|
|
false // boolean
|
|
[1,2,3] // object (array)
|
|
{
|
|
prop1: 'value1',
|
|
prop2: 'value1'
|
|
} // object
|
|
null // object (null)
|
|
undefined // undefined
|
|
```
|
|
|
|
## Variables
|
|
## Functions and Scope
|
|
## Objects/Arrays
|
|
## Equality
|
|
## Control Flow (loops, if/else)
|
|
## Functions are objects
|
|
## Events
|
|
## Callbacks
|
|
## Asynchronicity
|
|
## Constructor Functions
|