after I send an $.ajax request I get a response which looks like this:
(don't be afraid of Russian symbols, they are just strings of text:))
Actually, I know that when php send the request, it was a simple array like:
0 => array(2) ('hotel'=>'Отельчик', city_from => 'Москва'),
1 => array(6) ('birth_date'=>"2999-01-01", 'doc_fullnumber'=> '1', 'is_buyer'=>'0', 'is_tourist'=>'0', 'lastName'=>'Имя', name => 'Имя')
and so on....
It seems much easier for me to process arrays, not objects in JS. Could anyone give an advice of how to turn this object into simple array without all those '_ proto _: Object ' and all other Jquery specific stuff?

