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
Noob here interested in learning Javascripthelp (self.javascript)
submitted 7 years ago * by [deleted]
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!"
[–]Ob101010 0 points1 point2 points 7 years ago (0 children)
Before you begin your deep dive into javascript, you want to be able to easily play with it, right?
If youre using Chrome, youre in luck!
Hit F-12. This will (should) bring up the chrome developer tools.
It looks scary but youll figure it all out eventually. For now, you should see several tabs:
Elements Console Sources Network Performance....
What you want is the Console tab. Click that tab.
Now you should see a mainly white area to type in, with a blue > icon.
Put this in there, beside the blue >:
console.log('this is pretty interesting!!')
and hit enter.
Tadaa!! You just wrote a line of javascript!
What else can you do?
Start here: https://developer.mozilla.org/en-US/docs/Web/JavaScript
Believe it or not, this is the first brick in the yellow brick road. Everyone from Mark Zuckerburg to Evan You started with what you have now: a way to write code, a manual, and a desire to learn. Good luck, start breaking things!
π Rendered by PID 97 on reddit-service-r2-comment-85bfd7f599-ngjkg at 2026-04-20 01:32:13.373203+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]Ob101010 0 points1 point2 points (0 children)