JavaScript Adicionar 1 a cada elemento na matriz

var numberarr2 = numberarr.map( function(value) { 
    return value - 1; 
} );
florinrelea