Languages
[Edit]
EN

JavaScript - convert string array to float array

0 points
Created by:
telsa
502

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.1', '2.2', '3.14'];
const numbers = strings.map(parseFloat);

console.log(JSON.stringify(strings)); // ["1.1", "2.2", "3.14"]
console.log(JSON.stringify(numbers)); // [1.1, 2.2, 3.14]

 

See also

  1. JavaScript - convert integer array to string array

References

  1. parseFloat() - JavaScript | MDN
  2. Array.prototype.map() - JavaScript | MDN

Alternative titles

  1. JavaScript - convert string array to floating points array
  2. JavaScript - convert string array to array of floats
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join