Java Script/Basic Code
From r00tedvw.com wiki
(Difference between revisions)
Line 14: | Line 14: | ||
;if/else | ;if/else | ||
:used to send code down different paths | :used to send code down different paths | ||
− | if ( | + | if( condition) { |
− | + | code code code; | |
− | + | } else { | |
+ | code code code; | ||
+ | } | ||
;var | ;var | ||
:variable that can be determined or given | :variable that can be determined or given | ||
var MeaningofLife = 42 | var MeaningofLife = 42 |
Revision as of 23:40, 8 March 2013
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