Last active
October 19, 2022 14:19
-
-
Save matiasfha/64b105fb5cceebb56235bc25327ad259 to your computer and use it in GitHub Desktop.
Exmaple
This file contains 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
/* | |
* shameless plug: https://www.escuelafrontend.com/articulos/metodos-de-arreglos | |
*/ | |
const arr = [1,2,3,] | |
const failureMessages = [] | |
arr.forEach((item) => { | |
failureMessages.push("<li>${item}</li>") | |
}) | |
// Otra forma | |
arr.forEach(function Geneador(item) { | |
failureMessages.push("<li>${item}</li>") | |
}) | |
// Otra forma | |
function Generador(item) { | |
failureMessages.push("<li>${item}</li>") | |
} | |
arr.forEach(Generador) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment