I'm trying to create an array of arrays where the arrays inside are associative arrays but I do not know how to access them. This is my code.
var meses = {enero:31, febrero:29, marzo:31}
var año = [];
año.push(meses);
console.log(año[meses.enero])
This way it turns out that January is not defined. Does anyone know how to access?