I have two arrays consist of strings
["25","36","32"] and ["GradeA", "GradeB", "GradeC"]
I want to merge them all together and want to produce JSON string something like this:
{"GradeA" : "25", "GradeB" : "36", "GradeC": "32"}
How do I do this in js?