Agregue texto a cada elemento en una matriz JavaScript

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