{"ScriptPreparationCode":"var value = 7;\r\nvar arr = [1, 2];","TestCases":[{"Name":"Array.prototype.concat","Code":"const other = arr.concat(value);","IsDeferred":false},{"Name":"spread operator","Code":"const other = [ ...arr, value ];","IsDeferred":false},{"Name":"Push","Code":"const other = [ 1, 2 ].push(value);","IsDeferred":false}]}