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

220
Views
What happens with this use of the .map() function from Javascript/Typescript

I have a question about the .map() function which can be used on arrays.

The normal usage I know is like:

function myFunction(num) {
  return num * 2;
}

const numbers = [1, 2, 3, 4];
const newArr = numbers.map((element) => myFunction(element))

But in a code sample I saw the following usage:

const resultToRow = (r: MyProductsDto) => ({
  rowData: tableColumns.map(() => r),
});

In this example MyProductsDto is an Interface and tableColumns is an Array. But what exactly does .map(() => r) ?

r is not a function but a Interface and why is the arrow function empty without any arguments?

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

0

As length as of tableColumns, there will be r[] in rowData

also it all the value of r[] will be same because it has one reference address.

r[0] === r[1] === [r2] === [r(n)]

map makes new array from original array each element will pass as argument but accept it (the argument that tossed by map) or not is not consideration of map it just makes new array with return value of given 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!