We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Sometimes property name may can contains . character.
.
var fixture = { "bar.foo" : { "zar" : "test", "aaa.bbb" : "aaa.bbb" } };
_(fixture).valueForKeyPath("bar..foo.zar"); ==> "test" _(fixture).valueForKeyPath("bar..foo.aaa..bbb"); ==> "aaa.bbb"
_(fixture).valueForKeyPath("['bar.foo']['aaa.bbb']"); ==> "aaa.bbb"