Java Script/Basic Code
From r00tedvw.com wiki
Confirm pop-up (with ok or cancel response)
confirm("I feel awesome!");
Input prompt pop-up
prompt("Enter your name:");
Print out values for each line of code
console.log()
Information pop-up
alert("")
- Data Sets
- numbers (3, 42, etc)
- strings ("This is a string", "42", "is also a string")
- Booleans
- true or false statements, such as (7<10) or (10<7)
- if/else
- used to send code down different paths
if( condition) { code code code; } else { code code code; }
- var
- variable that can be determined or given
var MeaningofLife = 42