I'm working with an array = ["a", "b", "c"];
What I need to do is concatenate a string, let's say "Hello", to each value in this array.
The desired output should look like this:
["Hello_a", "Hello_b", "Hello_c"]
Is there a quicker way in javascript to achieve this, without using any loops.
Any assistance would be greatly appreciated!
Thank you