this post was submitted on 14 May 2024
154 points (99.4% liked)
Programming
17392 readers
145 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Kotlin is a really nice language with plenty of users, good tooling support, gets rid of a lot of the boilerplate that older languages have, and it instills many good practices early on (most variables are immutable unless specified otherwise, types are not nullable by default unless specified otherwise, etc)
But to get the most "bang for your buck" early on, you can't beat JavaScript (with TypeScript to help you make sense of your codebase as it keeps changing and growing).
You will probably want to develop stuff that has some user interface and you'll want to show it to people, and there is no better platform for that than the web. And JS is by far the most supported language on the web.
And the browser devtools are right there, an indispensable tool.