Lines Matching refs:testArray
85 let testArray = [] variable
89 testArray.push(i)
92 for(let i = 0; i < testArray.length; i++) {
93 if (proxy[i] !== testArray[i]) {
110 for(let i = 0; i < testArray.length; i++) {
111 if (array[i] !== testArray[i]) {
119 for(let i = 0; i < testArray.length; i++) {
120 if (newVector[i] !== testArray[i]) {
127 testArray.splice(3, 0, 999)
129 for(let i = 0; i < testArray.length; i++) {
130 if (proxy[i] !== testArray[i]) {
137 testArray.splice(9, 1)
139 for(let i = 0; i < testArray.length; i++) {
140 if (proxy[i] !== testArray[i]) {
147 testArray.splice(7, 1)
149 for(let i = 0; i < testArray.length; i++) {
150 if (proxy[i] !== testArray[i]) {
158 testArray.splice(1, 2)
160 for(let i = 0; i < testArray.length; i++) {
161 if (proxy[i] !== testArray[i]) {
169 if (value !== testArray[index]) {
180 for(let i = 0; i < testArray.length; i++) {
181 if (proxy[i] !== testArray[i] * 2) {
189 const newtestArray = testArray.slice(1, 3)
200 if (data !== testArray[j] * 2) {
216 if (testArray1[k] !== testArray[k] * 2) {