Skip to content

Instantly share code, notes, and snippets.

View ByCharliee's full-sized avatar
🎯
Focusing

Carlos Hernández ByCharliee

🎯
Focusing
View GitHub Profile
const numeros = [3, 4, 6, 7];
let i = numeros[0];
let j;
let valor = false;
numeros.forEach(function(numero){
if(numero == i){
console.log(numero);
console.log(i+"\n\n");
i++;
}