Answers for "for loop includes js"

1

javascript for loop 5 times

for (let step = 0; step < 5; step++) {
  // Runs 5 times, with values of step 0 through 4.
  console.log('Walking east one step');
}
Posted by: Guest on February-27-2020
0

for item loop

const object = {a: 1, b: 2, c: 3};

for (const property in object) {
  console.log(`${property}: ${object[property]}`);
}

// expected output:
// "a: 1"
// "b: 2"
// "c: 3"
Posted by: Guest on February-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language