Dictionaries
// An empty dictionary
//
{}
// A dictionary which associates integers with booleans
//
{
1: true,
2: false
}
// Invalid: mixed types
//
{
1: true,
false: 2
}Last updated
// An empty dictionary
//
{}
// A dictionary which associates integers with booleans
//
{
1: true,
2: false
}
// Invalid: mixed types
//
{
1: true,
false: 2
}Last updated