Java Script/Basic Code
From r00tedvw.com wiki
(Difference between revisions)
m (R00t moved page Java/Basic Code to Java Script/Basic Code) |
|||
| Line 22: | Line 22: | ||
:variable that can be determined or given | :variable that can be determined or given | ||
var MeaningofLife = 42 | var MeaningofLife = 42 | ||
| + | ;function | ||
| + | :follow the same instructions by calling on a single variable. | ||
| + | //This is what a function looks like | ||
| + | |||
| + | var divideByThree = function (number) { | ||
| + | var val = number / 3; | ||
| + | console.log(val); | ||
| + | }; | ||
| + | |||
| + | //On line 11, we call the function by name | ||
| + | //Here, it is called 'dividebythree' | ||
| + | //We tell the computer what the number input is (ie. 6) | ||
| + | //The computer then uses the code inside the function | ||
| + | divideByThree(12); | ||
Revision as of 02:14, 9 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
- function
- follow the same instructions by calling on a single variable.
//This is what a function looks like
var divideByThree = function (number) {
var val = number / 3;
console.log(val);
};
//On line 11, we call the function by name
//Here, it is called 'dividebythree'
//We tell the computer what the number input is (ie. 6)
//The computer then uses the code inside the function
divideByThree(12);