In the following example you can find a Json with previously established information. The problem is that the identifiers are numeric. How can I extract the textual information?
Example Hola mundo
.
var col = [];
var mydata =
[{
"01:23:2018, 10:02:32" : "Hola",
"01:23:2018, 10:02:38" : "Mundo",
"01:23:2018, 10:02:40" : "Somo tu y yo",
"username" : "Juan"
},];
for (var i = 0; i < mydata.length; i++) {
for (var key in mydata[i]) {
col.push(key);
}
}
console.log(col)