Posts

Showing posts with the label loop

Accept an integer and Print hello world n times in loop

  // Accept an integer and Print hello world n times let a = Number ( prompt ( "enter the number" )) for ( let i = 0 ; i < a ; i ++ ){     console . log ( "hello world" ) }

for in loop

let student = {   name: "rahul kumar",   age: 20, cgpa: 7.5, ispass : true, } for (let key in student){   console.log("key=", key, "value=", student[key] ) }

How to create Even number 1 to 100 with for loop

  for(var i = 0; i <= 100; i++){  if (i % 2 === 0){     console.log(i)   } }

How to create odd number 1 to 100 with for loop

 for(var i = 0; i <= 100; i++){   if (i % 2 !== 0){     console.log(i)   } }