Skip to content

Instantly share code, notes, and snippets.

@tofusoup429
Created March 9, 2021 00:25
Show Gist options
  • Save tofusoup429/092b837490d497b2bee5433ffd170025 to your computer and use it in GitHub Desktop.
Save tofusoup429/092b837490d497b2bee5433ffd170025 to your computer and use it in GitHub Desktop.
let cars = ["Toyota", "Hyundai", "BMW"]
for(let i = 0; i<cars.length; i++){
console.log(cars[i])
}
/**
Toyota
Hyundai
BMW
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment