I have the following object called result of the form
0: "X"
1: "S"
2: "Z"
3: "C"
4: "W"
5: "X"
6: "M"
7: "A"
8: "D"
9: "V"
10: "M"
11: "F"
12: "I"
13: "H"
. How could I convert this object into a string of characters of the form XSZCWXMADVFIH ? I tried JSON.stringify (), but these functions return a response of the form
["X","S","Z","C","W","X","M","A","D","V","M","F","I","H"]
array.join('')to turn your array of items into a string without characters in between.joinJSON.stringify()returns[...], then the object you are referring to is an array.