Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

127
Views
For Loop while referring to an array with Length

I'm very new to javascript and have just recently learned about For loops. I have a variable that consists of an array containing a bunch names, and i would like to add last names to each of them. I wrote the code as shown below and have a few questions.

let name = ["john", "maria", "brandon", "gaby", "jessica", "angel"];

function addLastName(array) {
  for (let i = 0; i < array.length; i++) {
    console.log(name[i] + " (please insert last name)")
  }
}

console.log(addLastName(name))

Result :

john (please insert last name)
maria (please insert last name)
brandon (please insert last name)
gaby (please insert last name)
jessica (please insert last name)
angel (please insert last name)
undefined

Questions:

  1. About the second statement for the loop. Correct me if i'm wrong, but when using length in an array, it will show the amount of data inside the array right? So in this case, name.length = 6. But to my understanding, when accessing a part of an array, the count always starts at 0. So i used array.length-1. But the result didn't show "Angel". When i used array.length, the result showed Angel. What logic am i missing here?

  2. when i put the result on the console, there's always an "undefined" at the end of it, whether i used array.length or array.length-1. Can anybody tell me why it showed up?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

For your first question:

Inside the for loop, if you start from 0, and the condition is i < array.length and the length of the array is 6, it will go from 0 to 5, and when it reaches 6 it will not respect the condition (6 < 6 false) so it will exit the for loop before executing the block inside (but when you exited the for, i will be 6).

For your second question:

You should not call console.log(addLastName(name)) because addLastName already logs to the console. That console.log is the one that prints undefined since it will print the result of the function, which is undefined by default if you do not return anything inside the function.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!