{"ScriptPreparationCode":"const limit = 10000000;\r\nvar array = [];\r\n\r\nfor (let i = 0; i \u003C limit; i\u002B\u002B) {\r\n array.push(i);\r\n}\r\n\r\nfunction getRandomIndex() {\r\n return Math.floor(Math.random() * array.length)\r\n}\r\n\r\nvar element = array[getRandomIndex()];","TestCases":[{"Name":"native","Code":"for (let index = 0; index \u003C this.chips.length; index\u002B\u002B) {\r\n if (this.chips[index] == chip) {\r\n this.chips.splice(index,1);\r\n index--;\r\n }\r\n}","IsDeferred":false},{"Name":"lodash","Code":"_.remove(array, x =\u003E x === element);","IsDeferred":false}]}