You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var students = ["Zero", "Guya", "Lino", "Albert"];
function helloStudent(estudiante) {
console.log(`Hola, ${estudiante}!`);
}
console.log("Using classic form:");
for (var i = 0; i < students.length; i++) {
helloStudent(students[i]);
}
console.log("Using new form:");
for (var student of students) {
helloStudent(student);
}
console.log("Using While loop:");
while (students.length > 0) {
// Aquí la tarea se hará siempre y cuando sea true, cuando llegué a false, dejará de hacer la tarea
var student = students.shift(); // shift() es un método que saca un elemento del array de la posición 0 a la última, Pop() comienza de la última a la primera.