I have plain string array and I want to convert it to JavaScript object basically adding a key to the values.
My array
var myArr = ["a", "b", "c"]
I want it Like
var myObj = [{"letter":"a", "letter":"b", "letter":"c"}]
Let me know the possibilities. Thank you