Created
September 10, 2022 09:59
-
-
Save buymed-hoangpham/02b0aca666e27c27ebeba009d10748da to your computer and use it in GitHub Desktop.
practice
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 peopleNameArray = ['William', 'Collin', 'Stephen']; | |
| const showPeopleName = function (name) { | |
| console.log(`Hello ${name}`); | |
| }; | |
| peopleNameArray.forEach(showPeopleName); | |
| peopleNameArray.map(showPeopleName); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment