{"ScriptPreparationCode":"var xs = [{\r\n text: \u0022a\u0022,\r\n sort: false\r\n}, {\r\n text: \u0022b\u0022,\r\n sort: true\r\n}, {\r\n text: \u0022c\u0022,\r\n sort: false\r\n}, {\r\n text: \u0022d\u0022,\r\n sort: true\r\n}, {\r\n text: \u0022e\u0022,\r\n sort: false\r\n}]\r\n","TestCases":[{"Name":"reduce","Code":"xs.reduce((acc, x) =\u003E {\r\n if (x.sort) {\r\n acc.push(x.text);\r\n }\r\n return acc;\r\n}, [\u0022z\u0022])","IsDeferred":false},{"Name":"flatMap","Code":"xs.flatMap((x) =\u003E x.sort ? [x.text] : []);","IsDeferred":false}]}