{"ScriptPreparationCode":"function Person(name, age, sex) {\r\n this.name = name;\r\n this.age = age;\r\n this.sex = sex;\r\n}","TestCases":[{"Name":"Bind","Code":"const thisObj = {};\r\nconst x = new (Person.bind(thisObj, \u0022Kolia\u0022, 1, \u0022m\u0022))()","IsDeferred":false},{"Name":"Apply","Code":"const thisObj = {};\r\nconst x = Person.apply(thisObj, [\u0022Dasha\u0022, 2, \u0022f\u0022])","IsDeferred":false}]}