Skip to content

Instantly share code, notes, and snippets.

@yaminmhd
Created May 21, 2018 07:32
Show Gist options
  • Save yaminmhd/dc49ce69cdf1b5fa21b2a5f44a3e721c to your computer and use it in GitHub Desktop.
Save yaminmhd/dc49ce69cdf1b5fa21b2a5f44a3e721c to your computer and use it in GitHub Desktop.
const string = 'hello';
for(let char of string){
console.log(char.toUpperCase().repeat(5));
}
//HHHHH
//EEEEE
//LLLLL
//LLLLL
//OOOOO
const cars = ['sports', 'suv', 'sedan'];
for(let car of cars){
console.log(`${car}`);
}
//sports
//suv
//sedan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment