A function that turns your Objects(or Json) into an Array with keys and values.
You can use the function inside the index.js file for using in browsers or download the package by npm :
npm install object-to-array-converter --save
var ota = require("object-to-array-converter");
var myobj = {
name: "Jack",
lastName: "Ericson",
phone: 12345678,
happy: true,
favFoods: ["Pizza", "Burger", "Omlet"]
}
var keyvalues = ota(myobj);
console.log(keyvalues);
// [ ['name', 'lastName', 'phone', 'happy', 'favFoods'], ['Jack', 'Ericson', 12345678, true, ['Pizza', 'Burger', 'Omlet']] ]
You can even turn your req.body objects (if you working with http requests) into an Array of keys and values.
Just put it in as the function parameter, Example :
app.post("/", function(req, res){
var body = ota(req.body);
})