“JS converte a matriz de string em matriz de números” Respostas de código

Array de string para matriz de número JavaScript

const stringArr = ["5", "4", "6", "2"];

const numArr = stringArr.map((item) => parseInt(item, 10));
Inquisitive Iguana

JS converte a matriz de string em matriz de números

const atrArr = ['7', '2', '5']
let numbersArr = strArr.map(c => +c); //[7, 2, 5]
MrStonkus

JS Converter Number Array em Array de String

/* 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']
GutoTrosla

Respostas semelhantes a “JS converte a matriz de string em matriz de números”

Perguntas semelhantes a “JS converte a matriz de string em matriz de números”

Mais respostas relacionadas para “JS converte a matriz de string em matriz de números” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código