Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const arr = [5,7,3]; var d = arr.map(Number.toString); console.log(d);
index.js:3 Uncaught TypeError: Function.prototype.toString requires that 'this' be a Function at toString () at Array.map () at index.js:3
const arr = [5,7,3]; const d = arr.map(String); console.log(d);