[1, 2, 3].map(String); // ["1", "2", "3"] [0, 1, "", "Hello", null].map(Boolean); // [false, true, false, true, false] [1, 4, 9, 16].map(Math.sqrt); // [1, 2, 3, 4] ['1', '2', '3'].map(Number); // [1, 2, 3] γθΏγ