9
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 17 May 2026
9 points (90.9% liked)
JavaScript community
1070 readers
1 users here now
A community about JavaScript, the ECMAScript standard, and programs that make use of JS such as Node.js.
founded 7 years ago
MODERATORS
I wouldn't recommend javascript as anyone's first language unless you have a specific reason to choose it, like a project written in JS that you want to play around with.
I would recommend either Python, Go, or Rust. Python is simple and ubiquitous like JS but with much friendlier syntax. Go is not much more complicated with the bonus of static typing (basically more organized), and Rust is the complex, low-level language with built in guardrails in the compiler which will force you to write good, safe code -- probably only move to this one after you've spent a good bit of time fooling with one of the others.
Would Python be ok even if I want to learn how JSON API calls work?
I’m sure my questions are showing my knowledge level. 🤣
Sure, APIs are written in many languages. JSON is just a format for data exchange, bunch of nested brackets etc.
I recommend the site learnxinyminutes.com -- great resource for a quick look at the syntax and major features of languages. Here's the page for JSON, in fact: https://learnxinyminutes.com/json/
Thank you!