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

343
Views
Foreach to Variable Javascript / React

i want to ask something about how to join data inside variable, so basicly I have data that I foreach (because i need to change that object), then I want to enter each data that I foreach into a variable, as below:

const thisData = {["abcd","efgh"]}
for (let objData of thisData) {
    //lets say i need to change every data from word to number
    //I've managed to change it
    const newData = changetoNumber(objData)
}

then i need to save it to another variable, and now i'm stuck, can you guys help me?

//this is what i need
console.log(listnewData)
//1234 5678
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

You are looking for a "map".

So, the map method takes in a single parameter, a function which is called on each item, in the simplest case with a single parameter, the item itself like so:


function f(x) {
    return x.length // for example
}

const thisdata = ["abcd", "efg"];
const newvar = thisdata.map(f);
console.log(newvar); // prints [3,2]
about 4 years ago · Juan Pablo Isaza Report

0

You can use the map function to create output in the form of an array.

const start = 96; // char code of 'a' is 97 

const thisData = ["abcd","efgh"]

const toNumber = (str) => {
  const strArr = str.split('');
  return strArr.map(s => s.charCodeAt() - start).join('');
}

console.log(thisData.map(toNumber))

about 4 years ago · Juan Pablo Isaza Report

0

I think your Data is not proper. It may be like This

let thisData = {
     numbers : ["asas" , "sasas"],
}

for that Solution might be like this

for(const i in thisData){
  thisData.numbers = thisData[i].map((x, index) => {
    if(typeof(x) == "string"){
      return index + 1;
  }
})

}
console.log(thisData);

And your Final output is :

{
  numbers: [1, 2]
}

You can also Try out this in my JSfiddle Playground Link : https://jsfiddle.net/anks_patel/5tLnrm6c/

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!