You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112
  1. 'use strict'
  2. let launchCode = 'LaunchCode';
  3. let array = [1, 5, 'LC101', 'blue', 42];
  4. for (let i = 0; i <= array.length - 1; i++) {
  5. console.log(array[i]);
  6. }
  7. for (let i = launchCode.length - 1; i >= 0; i--) {
  8. console.log(launchCode[i]);
  9. }