I currently have a collection of words stored in a .json file
Here is an example:
[
"apple",
"banana",
"orange"
]
My objective is to create an object for each word
Similar to this structure:
[
{
word: "apple",
description: "..."
},
{
word: "banana",
description: "..."
},
{
word: "orange",
description: "..."
}
]
Any suggestions on the most effective method to achieve this?