How can I append a string to each element from a string array in typescript
I have an array like const original = ['a', 'b', 'c'] I want to make it as const original_string = ['i am key a', 'i am key b', 'i am key c'] how can I do that? maybe something like const original_string = original.map(() => ${'i am key'})?
I have following but it does not work
const original_string = original.forEach((item)=> (`i am key ${item}`));