{"ScriptPreparationCode":null,"TestCases":[{"Name":"split map","Code":"const string = \u0027asdf1234qwer\u0027;\r\nconst mapper = (char) =\u003E String.fromCharCode(char.charCodeAt(0))\r\n\r\nstring.split(\u0027\u0027).map(mapper).join(\u0027\u0027)","IsDeferred":false},{"Name":"for loop","Code":"const string = \u0027asdf1234qwer\u0027;\r\nconst mapper = (char) =\u003E String.fromCharCode(char.charCodeAt(0))\r\n\r\nlet result = \u0022\u0022\r\nfor(const char of string) {\r\n\tresult \u002B= mapper(char)\r\n}","IsDeferred":false}]}