JavaScript Agregar 1 a cada elemento en la matriz

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