EN
JavaScript - convert string array to integer array
0
points
In this article, we would like to show you how to convert an array of strings to an array of numbers in JavaScript.
Quick solution:
// ONLINE-RUNNER:browser;
const strings = ['1', '2', '3'];
const numbers = strings.map(item => parseInt(item));
console.log(JSON.stringify(strings)); // ["1","2","3"]
console.log(JSON.stringify(numbers)); // [1,2,3]