{"ScriptPreparationCode":"var target_array = [];\r\nvar new_data = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20];","TestCases":[{"Name":"Adding with Function.prototype.apply on the push method","Code":"target_array.push.apply(target_array, new_data)","IsDeferred":false},{"Name":"Adding with spread","Code":"target_array.push(...new_data)","IsDeferred":false}]}