index
: the automatic assignment of numbers within an array.operators
- allow the creation of single values from one or more valuesarithmetic operator
: operators used to manipulate numbersajax
: technique for loading data on page. it allows you to load a certain section of the page rather than reloading the entire page.Data-formats
: types of code in page, html,xml,json.
html
: Just change the data within htmlxml
: is very similar to html but tag names are different. They describe the data they contain.json
: uses object literal notation keyword function name
| |
function.sayHello(){
document.write('Hello!'); ----> whats being done
}
sayHello();
parameters
^
|
function getArea(width,height){
return width * height;
} | |
the parameters are like
variables within the function
Pair programing
: is a way of programing to tackle a project or task. It works by using a driver and navigator.