Answers for "js convert string array to number"

10

javascript Convert an array of strings to numbers

const toNumbers = arr => arr.map(Number);
toNumbers(['1', '2', '3','4']);     // [1, 2, 3, 4]
Posted by: Guest on July-02-2020
2

js convert number array to string array

/* You can use map and pass the String constructor as a function, 
	which will turn each number into a string: */
sphValues.map(String) //=> ['1','2','3','4','5']
Posted by: Guest on August-30-2021

Code answers related to "js convert string array to number"

Code answers related to "Javascript"

Browse Popular Code Answers by Language