null => object <null>
undefined => object <null>
42 => Int64 42
3.1415 => Double 3.1415
'text' => String "text"
{} => Dictionary<String, Object> { }
{ x: 42 } => Dictionary<String, Object> { "x": Int64 42 }
{ [0]: 42 } => Dictionary { "0": Int64 42 }