JavaScript Level One
JavaScript Level One
● IF statement
● if (condition){
//Execute some Code
}
Django Bootcamp
● IF ELSE statement
● if (condition){
//Execute some Code
}else{
// Execute some other Code
}
Django Bootcamp
● While Loop
● while(condition){
// Execute some code while
// this condition is true
}
Part 7 - For Loops
JavaScript Level One
Django Bootcamp
● For Loop
● for (statement1;statement2;statement3){
// Execute some code
}
Django Bootcamp