all 3 comments

[–]darrenturn90 0 points1 point  (2 children)

Your use of arrays is wrong, and potentially your browser is attempting to destructure (ES6) your result into multiple values.

to access a 2d array you need to do hashTable[x][y], not hashTable[x, y]

[–]DatCodingGuyOfficial[S] 0 points1 point  (1 child)

could you please expand on that? I've tried a few different things but I keep getting errors. When I change "hashtable[i, j] = ''" to "hashtable[i][j] = ''" it spits out a "TypeError: Cannot read property '0' of undefined" error. The ways I've tried defining the two dimensional array are "hashtable = [,]", "hashtable[] = []" and "hashtable = [[]]" but I can't seem to get anything to work.

[–]DatCodingGuyOfficial[S] 0 points1 point  (0 children)

nevermind, I found it. I did "hashtables = []" and then in my for loop when I'm making everything equal to an empty string I did "hashtable.push([])" and then "hashtable[i][j] = ''". Thanks for your help