
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Convert Integer Array to String Array in JavaScript
To convert integer array to string array, use the map(String) in JavaScript. Let’s say the following is our integer array −
var integerValues = [101,50,70,90,110,90,94,68];
Convert integer array to string array −
integerValues.map(String);
Example
Following is the code −
var integerValues = [101,50,70,90,110,90,94,68]; console.log("The integer array value="); console.log(integerValues); integerValues.map(String); console.log("The string array value="); console.log(integerValues)
To run the above program, you need to use the following command −
node fileName.js.
Here, my file name is demo212.js.
Output
The output is as follows in console −
PS C:\Users\Amit\JavaScript-code> node demo212.js The integer array value= [ 101, 50, 70, 90, 110, 90, 94, 68 ] The string array value= [ 101, 50, 70, 90, 110, 90, 94, 68 ]
Advertisements