{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"const array = [1, 2]\r\nconst newArray = array.concat()","IsDeferred":false},{"Name":"Array.prototype.from","Code":"const array = [1, 2]\r\nconst newArray = Array.from(array)","IsDeferred":false},{"Name":"Array.prototype.slice","Code":"const array = [1, 2]\r\nconst newArray = array.slice(0)","IsDeferred":false},{"Name":"spread operator","Code":"const array = [1, 2]\r\nconst newArray = [...array]","IsDeferred":false}]}