JSFiddle - React, Tailwind, and code Playground
by Joshua Dwire
JavaScript
var response = '{"01":"January","02":"February"}',
months = JSON.parse(response);
console.log('string index: '+months['02']) // undefined in Chrome (my version is 24.0.1312.5 beta)
console.log('number index: '+months[2]) // "February"