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

122
Views
Log array element if string exists

I wanted to loop through an array and check if a string exists in the array elements and my code below partially works. The problem is currently it logs the array element if a specified string exists anywhere in the array element but what I want to do is log if the string is in the array element but also the same index position. To explain this better say one of my array elements is testing and the string I'm looking for is tes because tes is occurring in the index position 0,1,2 the element logs. But say my array element is not testing and the string I'm looking for is tes it won't log because even though the string exists it's in the wrong index. How can I achieve this? Thanks in advance.

const myArray = ['test blah', 'this is test', 'testing 234', 'nothing']

const check = 'te'
for (var i = 0; i < myArray.length; i++) {
  if (myArray[i].includes(check)) {
    //should print myArray[0] and myarray[2]
    console.log(myArray[i]);
  }
}

about 4 years ago · Santiago Gelvez
1 answers
Answer question

0

You can use startsWith()

const myArray = ['test blah', 'this is test', 'testing 234', 'nothing']

const check = 'tes'
for (let i = 0; i < myArray.length; i++) {
  if (myArray[i].startsWith(check)) {
    console.log(myArray[i]);
  }
}

about 4 years ago · Santiago Gelvez 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!