I have an array like this ["aaa","aaa","bbb","ccc"]
.
what I need is convert it into a form like this:
{ "aaa" :
{ "aaa" :
{ "bbb" :
{ "ccc" : 1 }
}
}
}
I know eval
can do the trick, however is there any prettier solution?
Thank you for reading my post.