Answers for "convert array of json to json"

2

how to convert array to string json

var arr = [ "John", "Peter", "Sally", "Jane" ];
var myJSON = JSON.stringify(arr);
Posted by: Guest on July-25-2020
1

Convert json to array

var j = {0: "Hello", 1: " ", 2: "World", 3: "!"};

console.log(Object.values(j))
// Object.values(j) = ["Hello"," ","World","!"]
Posted by: Guest on June-15-2021

Code answers related to "convert array of json to json"

Code answers related to "Javascript"

Browse Popular Code Answers by Language