{"ScriptPreparationCode":"var firstEqual = Array.from({length: 1000000}, (item, idx) =\u003E idx);\r\nvar secondEqual = Array.from({length: 1000000}, (item, idx) =\u003E idx);\r\n\r\nvar arrayToDedup = firstEqual.concat(secondEqual);","TestCases":[{"Name":"Lodash Uniq","Code":"_.uniq(arrayToDedup);","IsDeferred":false},{"Name":"Javascript Set Iterator","Code":"[...new Set(arrayToDedup)]","IsDeferred":false},{"Name":"Javascript Set Array.from","Code":"Array.from(new Set(arrayToDedup))","IsDeferred":false}]}