Добавить текст в каждый элемент в массив JavaScript

var arr = ['first', 'second', 'third'];    
arr = arr.map(i => '#' + i);
Cloudy Crayfish