How can I convert this Array of Objects
var tags= [
{id: 0, name: "tag1", project: "p1", bu: "test"},
{id: 1, name: "tag2", project: "p1", bu: "test"},
{id: 2, name: "tag3", project: "p3", bu: "test"}
];
Into this 2d array:
[["tag1","p1", "test"],
["tag2","p1", "test"],
["tag3","p3", "test"]]