Languages
[Edit]
EN

JavaScript - convert integer array to string array

0 points
Created by:
Zoya-Gaines
653

In this article, we would like to show you how to convert an array of numbers to an array of strings in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

const numbers = [1, 2, 3];
const strings = numbers.map(String);

console.log(JSON.stringify(numbers)); // [1,2,3]
console.log(JSON.stringify(strings)); // ["1","2","3"]

Warning:

This solution will also convert boolean values into strings.

 

See also

  1. JavaScript - convert string array to integer array

References

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

Alternative titles

  1. JavaScript - convert numbers array to string array
  2. JavaScript - convert array of numbers to array of strings
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