JSFiddle - React, Tailwind, and code Playground
by John Grivas
JavaScript
var myArray = [{
'10/3/2014': "some value"
}, {
'10/4/2014': "some value"
}, {
'10/5/2014': "some value"
}];
var splashArray = new Array();
$.each(myArray, function (key, value) {
$.each(value, function (key, value) {
console.log(key, value);
splashArray.push(key);
});
});
console.log(splashArray[0]) /*10/3/2014*/