{"ScriptPreparationCode":null,"TestCases":[{"Name":"Filtering 1 ","Code":"var users = [\r\n {\r\n id: \u00271\u0027,\r\n name: \u0027User 1\u0027,\r\n rating: 3,\r\n properties: [\r\n { name: \u0027Duplex Flat\u0027, neighborhood: \u0027Friderichshain\u0027 },\r\n { name: \u0027Cozy Apartment\u0027, neighborhood: \u0027Friderichshain\u0027 }\r\n ]\r\n },\r\n {\r\n id: \u00272\u0027,\r\n name: \u0027User 2\u0027,\r\n rating: 2,\r\n properties: [{ name: \u0027Single Room\u0027, neighborhood: \u0027Lichtenberg\u0027 }]\r\n }\r\n];\r\n\r\nusers.filter(item =\u003E item.id !== \u00272\u0027)","IsDeferred":false},{"Name":"Filtering 2","Code":"var users = {\r\n 1: {\r\n id: \u00271\u0027,\r\n name: \u0027User 1\u0027,\r\n rating: 3,\r\n properties: [\r\n { name: \u0027Duplex Flat\u0027, neighborhood: \u0027Friderichshain\u0027 },\r\n { name: \u0027Cozy Apartment\u0027, neighborhood: \u0027Friderichshain\u0027 }\r\n ]\r\n },\r\n 2: {\r\n id: \u00272\u0027,\r\n name: \u0027User 2\u0027,\r\n rating: 2,\r\n properties: [{ name: \u0027Single Room\u0027, neighborhood: \u0027Lichtenberg\u0027 }]\r\n }\r\n};\r\n\r\ndelete users[\u00272\u0027]\r\n","IsDeferred":false}]}