I have this JSON Object
{1: "test projekt", 4: "Second Project",
5: "Third Project", 6: "Fourth Project",
7: "5th one", 8: "6th one dude",
uhash: "7021a11332508b6e30d3b6d3e95180398228b0e4010fc3f05db81e80"}
i want to split it into:
{1: "test projekt", 4: "Second Project",
5: "Third Project", 6: "Fourth Project",
7: "5th one", 8: "6th one dude"}
and
{uhash: "7021a11332508b6e30d3b6d3e95180398228b0e4010fc3f05db81e80"}
how can I do it in js?
