Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does map(Number) do here?

var strArr = ["[1,2,3,4]","[1,2,3,4"]];
var arr1 = strArr[0].match(/\d+/g).map(Number); 

I know that the map() method creates a new array with the results of calling a provided function on every element in the calling array. Here as Number is a wrapper object I am not able to understand what's going on.

What I understood is that if I console log removing the map method I get an array of strings whereas including the map method I get an array of numbers.I would like to know how map is able to take each string and converting to number.

like image 789
Sai Avatar asked Jan 19 '18 14:01

Sai


2 Answers

var arr1 = strArr[0].match(/\d+/g).map(Number);

is equivalent to

var arr1 = strArr[0].match(/\d+/g).map((str, ind, arr) => Number(str, ind, arr));

The reason Number works despite passing extra arguments in is because it ignores everything but the first argument. You cannot expect every function to behave accordingly, since not all functions ignore everything but the first argument, but in this case it is a convenient shortcut. Another neat example that works well is converting truthy and falsy values to booleans:

var arrBool = arrAny.map(Boolean);
like image 175
Patrick Roberts Avatar answered Oct 12 '22 14:10

Patrick Roberts


strArr[0] //selects the first string. "[1,2,3,4]"

.match(/\d+/g)  // give an array of all continuos strings of digits. ['1','2','3','4']

.map(Number)  // Calls Number on each value in the array (casting it to a number)
              // and returns the array of results. [1,2,3,4]
              //
              // Keep in mind Number(val) attempts to create a Number from 
              // what ever is passed to it. If it is a string itll
              // try to convert the string to a numerical value. 

Its a complicated way of parsing a string containing an array literal. Seems like a complicated way of doing:

JSON.parse(strArr[0]) 

but without more context I cant tell you if its bad programming or if there is a good reason for it.

like image 40
gbtimmon Avatar answered Oct 12 '22 14:10

gbtimmon