So I have an object that looks like this:
Clearly it contains two keys "200001" and "201601".
But when I try to access those two variables I get undefined!
Code bellow:
console.warn($rootScope.layout);
console.log('layout 200001', $rootScope.layout[200001]);
console.log('layout 201601', $rootScope.layout[201601]);
Am I missing something?