Created
May 21, 2018 07:32
-
-
Save yaminmhd/dc49ce69cdf1b5fa21b2a5f44a3e721c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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