{"ScriptPreparationCode":"const a = [1, 2, 3, 4, 5]\r\nconst b = [3, 4, 5, 6, 7]","TestCases":[{"Name":"Lodash union","Code":"const c = _.union(a, b)","IsDeferred":false},{"Name":"new Set() union","Code":"const setA = new Set(a)\r\nconst setB = new Set(b)\r\n\r\nconst c = setA.union(setB)","IsDeferred":false}]}