for if javascript code example

Example 1: javascript for

let str = "";

for (let i = 0; i < 9; i++) {
  str = str + i;
}

console.log(str);
// expected output: "012345678"

Example 2: javascript loop if statement

// a loop is where you say i = 5 and if i < 6 {
 // print("hdyugvryvg");
// it means i = 5 and 6 is greater than 5 so it should print out hdyugvryvg 5 times
//}

// example

for (let i = 0; i < 10000; i++) {
 	console.log('huduiduin 100000 times'); 
}



// dont try this put a lower number this nearly crashed my browser

Example 3: else if javascript

if (condition1) {
  // code to be executed if condition1 is true
} else if (condition2) {
  // code to be executed if the condition1 is false and condition2 is true
} else {
  // code to be executed if the condition1 is false and condition2 is false
}

Example 4: boucle for in js

let panier = ['fraise', 'banane', 'poire'];

for (const fruit in panier) {
    console.log(panier[fruit]);
}

Example 5: javascript if or

let A = 1;
let B = 0;
if (A == 1 || B == 1){
  	// some code here
}

Example 6: javascript if

const number = (Math.random() - 2.5) * 5;
if (number < 0) {
	console.log('Number is negative');
}
if (number = 0) {
	console.log('Number is zero');
}
if (number > 0) {
	console.log('Number is positive');
}