How can I append/concatenate some string before each array element using join()? For example the following code has an output like
One_Two_Three_Four
but what I want is adding the string Step- to the beginning of all items on join which can have an output like:
Step-One_Step-Two_Step-Three_Step-Four
var steps = ["One", "Two", "Three", "Four"];
var stpstr = steps.join("_");
console.log(stpstr);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

joinwith_Step-and also add a_Step-in the beginning ?joinwith_step-is adding the string_step-to the end of each element but as I asked I want to add to the beginning of each phrase