var JsonObject, jsArray; // JS array jsArray = ["one", "two", "three"]; // Convert (js array) to (json object) JsonObject = JSON.parse(JSON.stringify(jsArray)); // type console.log(typeof(JsonObject)); // JsonObject console.log(JsonObject)