Contact: aviboots(AT)netvision.net.il
39,990 questions
51,935 answers
573 users
const arr = [5, 7, 18, 389]; const arrOfStrings = arr.map(num => { return String(num); }); console.log(arrOfStrings); console.log(typeof arrOfStrings[0]); /* run: ["5", "7", "18", "389"] "string" */