{"ScriptPreparationCode":"function get_with_slice() {\r\n return Array.prototype.slice.call(arguments)\r\n}\r\n\r\nfunction get_with_array_from() {\r\n return Array.from(arguments)\r\n}\r\n\r\nfunction get_with_spread(...args) {\r\n return args\r\n}","TestCases":[{"Name":"Array.slice","Code":"get_with_slice(1, 2, 3)","IsDeferred":false},{"Name":"Array.from","Code":"get_with_array_from(1, 2, 3)","IsDeferred":false},{"Name":"Spread","Code":"get_with_spread(1, 2, 3)","IsDeferred":false}]}