Contact: aviboots(AT)netvision.net.il
39,988 questions
51,933 answers
573 users
const arr = [ 999, 12, 87, 99, 4 ] const arrOfStrings = arr.map(num => { return String(num); }); console.log(arrOfStrings); console.log(typeof arrOfStrings[0]); /* run: [ '999', '12', '87', '99', '4' ] string */