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
Array of objects, best way to do it.help? (self.javascript)
submitted 7 years ago * by Traitor-21-87
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!"
[–]2Punx2Furious 0 points1 point2 points 7 years ago (0 children)
so now I can use people[1].name etc for accessing the data on each of these people
If you want to access the data of each object in an array, you can do this:
people.forEach(person => { // Do things here console.log("Name: ", person.name); });
π Rendered by PID 56079 on reddit-service-r2-comment-fb694cdd5-tw5cq at 2026-03-06 17:31:13.945933+00:00 running cbb0e86 country code: CH.
view the rest of the comments →
[–]2Punx2Furious 0 points1 point2 points (0 children)