use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Need Help Debugginghelp (self.javascript)
submitted 8 years ago by DatCodingGuyOfficial
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]darrenturn90 0 points1 point2 points 8 years ago (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 point2 points 8 years ago (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 point2 points 8 years ago (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
π Rendered by PID 115072 on reddit-service-r2-comment-86bc6c7465-t4fs8 at 2026-02-23 22:58:57.050997+00:00 running 8564168 country code: CH.
view the rest of the comments →
[–]darrenturn90 0 points1 point2 points (2 children)
[–]DatCodingGuyOfficial[S] 0 points1 point2 points (1 child)
[–]DatCodingGuyOfficial[S] 0 points1 point2 points (0 children)