Does JQuery support Dictionaries (key, value) collection ?
Dictionaries
I would like to set the following data in a structure
[1, false] [2, true] [
Yes, you can use object to do this:
var myDict = { 1:false , 2:true , 3:false };