now the data is as follows:
var _arr = [{"area":"","name":""},{"area":"","name":""},{"area":"","name":""},{"area":"","name":""},{"area":"","name":""},{"area":"","name":""}];
want to reassemble the data into
var _arr = [{"area":"","name":[""]},{"area":"","name":[""]},{"area":"","name":["",""]},{"area":"","name":["",""]}];
that is, to judge the area. If the area is the same, put the name into the same array and find the method.