languages don't matter too much. You'll need to learn a new language for many things that you'll do. Learn languages when you need them, so in your case python first. In fact learning a language quickly is a skill in and of itself. Answer from TangerineX on reddit.com
🌐
freeCodeCamp
forum.freecodecamp.org › t › why-should-i-learn-python-if-i-already-know-javascript › 253988
Why should I learn Python if I already know Javascript? - The freeCodeCamp Forum
January 25, 2019 - I’ve been working with javascript for a while now and I’m comfortable with it. I like all the libraries and flexibility that I have with it. (Typescript, Node, Electron, React, etc) I want to eventually start messing around with another language like Python or even Java but I’m not really ...
🌐
daily.dev
daily.dev › home › blog › get into tech › python and javascript: choosing your first language
Python and JavaScript: Choosing Your First Language
December 22, 2025 - Learning both can be beneficial, offering a solid foundation in web development and programming basics. ... Ultimately, your choice should align with your interests and career goals. Python offers a gentle introduction to programming with diverse applications, while JavaScript is key for those focused on web development...
Discussions

Halfway through Python, should I move to JS or stick with Python?
Hello. Last week I finished my first course. It was a Udacity Nanodegree (introduction to programming) It was very good. I learnt some python, functions and some (mostly theorical) OOP. After that there was a bit of front end teaser, so we learnt a bit of JS, jQuery, the usual. More on forum.freecodecamp.org
🌐 forum.freecodecamp.org
0
2
November 16, 2016
Learning Javascript after Python
I’m going the ofher way, learning python from scratch as a snr. js stack dev. Don’t mind python but there’s quirks to every language. I generally don’t find the tooling as satisfying in python yet, but I do like the fluency of the language. I like that I write it once and can expect it to do what I think it’s gonna do. I’m also not yet used to indentation mattering as much, not a huge fan but again; quirk of the language. Tips I’d give python devs learning JS: stay the hell away from frameworks until you’re comfortable with the core language, learn es6/typescript. learn by doing, find a project and work out how to spin it up, then find flaws and see what JS has to offer to improve in those areas. you’ll never learn it all, stick to making stuff that works/solves your problem. learn about javascript’s weird and predicable but not expected scoping rules pick up a typed form of JS (typescript/es6 with types) set up eslint with recommended(s) and prettier so you get the style of pretty-good js. learn the es6 way of doing something before the library-laden way. (Like the pyhonic way but for js) spend time on closures, async/await, lambdas, scoping, destructuring and Promise patterns (all, race, allResolved, etc), oh and coercion. look at what your ts/es6 transpiles down to (unminified) to get an idea of how JS does stuff under the hood. learn about tooling (node, npm, nps, jest, nyc, eslint, prettier, webpack/a bundler) learn about number/decimal handling if you plan on doing any math you need to trust (financial), see decimal.js & similar. Run “0.1 + 0.2” if you’re not sure why. learn about all the crazy places you can deploy JS (browser, node, electron, capcitor, etc). If you’re picking a base framework for front-end dev the answer is probably react. The State of JS survey results can guide you on what frameworks and libraries might be worth picking up. Good luck and welcome to ordered chaos. More on reddit.com
🌐 r/learnpython
75
196
October 22, 2021
How easy is learning Python after having learned JavaScript?
About 32.741 units easier. More on reddit.com
🌐 r/learnprogramming
14
4
October 30, 2022
What should I learn Python or JavaScript
Python. If you hate it, try javascript.  If you hate that, it might be a sign More on reddit.com
🌐 r/learnprogramming
57
32
June 11, 2024
🌐
Reddit
reddit.com › r/learnprogramming › learn python or javascript first?
r/learnprogramming on Reddit: Learn Python or JavaScript first?
December 29, 2021 -

Hello!

Im 26 years old and have an associates degree, I’m doing a career change from Finance. I realized that going to bootcamp is not worth it , and pursuing a CS degree would help me get a job. It should take me about 2 years to finish but meanwhile I go through those classes I want to self learn, build my skills, get my portfolio going.

My goal is to become a web developer(front end preferably) or even backend if I end up liking it.

My first 2 classes at the university are python related, so would it make sense for me to go all in on Python by taking self learning courses through udemy or youtube? and worry about learning JavaScript later? I already know html, css and a little bit of JavaScript but I’m not sure if its doable learning python and JavaScript at the same time. Has anyone tried learning python and JavaScript at the same time?

Thanks!!

🌐
SitePoint
sitepoint.com › blog › javascript › javascript vs python: which one should you learn first?
JavaScript vs Python: Which One Should You Learn First? — SitePoint
November 13, 2024 - In summary, Python is the easiest to learn from a syntax point of view, but more wide-spread help is available for JavaScript. Both Python and JavaScript are considered to be “facilitating languages”, meaning that knowing either (and certainly ...
🌐
Quora
quora.com › Why-should-I-learn-JavaScript-when-I-know-Python
Why should I learn JavaScript when I know Python? - Quora
Answer (1 of 2): You should learn JavaScript because: * Python is only for backend (server side) and your browser doesn't render python. * DOM manipulation is done using JS only * To make Ajax calls * Angular.JS, react.JS, etc are front end ...
🌐
DEV Community
dev.to › kachiic › learning-javascript-as-a-python-developer-126g
Learning Javascript as a Python Developer - DEV Community
April 26, 2023 - However, the introduction of Node JS and the popularity of javascript amongst developers means you should probably learn it. Even just being able to read it would serve you well. If you're nervous about learning Javascript, remember that Javascript ...
🌐
freeCodeCamp
forum.freecodecamp.org › t › halfway-through-python-should-i-move-to-js-or-stick-with-python › 55881
Halfway through Python, should I move to JS or stick with Python? - The freeCodeCamp Forum
November 16, 2016 - Hello. Last week I finished my first course. It was a Udacity Nanodegree (introduction to programming) It was very good. I learnt some python, functions and some (mostly theorical) OOP. After that there was a bit of front end teaser, so we learnt a bit of JS, jQuery, the usual.
Find elsewhere
🌐
Reddit
reddit.com › r/learnpython › learning javascript after python
r/learnpython on Reddit: Learning Javascript after Python
October 22, 2021 -

Two things strike me with Javascript as opposed to Python (obviously, caveats apply...)

  1. Learning Javascript to enable the web is far more practical than learning a Python GUI.

  2. All of the extra steps in Javascript when it comes to functional programming, yuck!

Top answer
1 of 5
42
I’m going the ofher way, learning python from scratch as a snr. js stack dev. Don’t mind python but there’s quirks to every language. I generally don’t find the tooling as satisfying in python yet, but I do like the fluency of the language. I like that I write it once and can expect it to do what I think it’s gonna do. I’m also not yet used to indentation mattering as much, not a huge fan but again; quirk of the language. Tips I’d give python devs learning JS: stay the hell away from frameworks until you’re comfortable with the core language, learn es6/typescript. learn by doing, find a project and work out how to spin it up, then find flaws and see what JS has to offer to improve in those areas. you’ll never learn it all, stick to making stuff that works/solves your problem. learn about javascript’s weird and predicable but not expected scoping rules pick up a typed form of JS (typescript/es6 with types) set up eslint with recommended(s) and prettier so you get the style of pretty-good js. learn the es6 way of doing something before the library-laden way. (Like the pyhonic way but for js) spend time on closures, async/await, lambdas, scoping, destructuring and Promise patterns (all, race, allResolved, etc), oh and coercion. look at what your ts/es6 transpiles down to (unminified) to get an idea of how JS does stuff under the hood. learn about tooling (node, npm, nps, jest, nyc, eslint, prettier, webpack/a bundler) learn about number/decimal handling if you plan on doing any math you need to trust (financial), see decimal.js & similar. Run “0.1 + 0.2” if you’re not sure why. learn about all the crazy places you can deploy JS (browser, node, electron, capcitor, etc). If you’re picking a base framework for front-end dev the answer is probably react. The State of JS survey results can guide you on what frameworks and libraries might be worth picking up. Good luck and welcome to ordered chaos.
2 of 5
37
Looping through an array in Javascript for the first time after doing it in Python for months was just, like, whaaaat.
🌐
Quora
quora.com › Should-I-learn-Python-if-I-already-know-JavaScript
Should I learn Python if I already know JavaScript? - Quora
Answer (1 of 2): Depends what you’re trying to achieve. If your end goal is to work as a software developer, ask yourself what you want to work on. Is it web sites? Smartphone apps? Games? Desktop apps? What it is, look at what languages are popular in that field, look at what jobs are out there...
🌐
Codecademy
codecademy.com › home › python vs. javascript: which should you learn as a beginner?
Python vs. JavaScript: Which Should You Learn As A Beginner?
April 9, 2024 - You can't go wrong choosing either Python or JavaScript as your first programming language. In this article, we look at why you would choose one over the other.
🌐
BitDegree
bitdegree.org › home › best learning platforms › guides › python vs javascript: which one should you learn?
Python vs JavaScript Comparison: Should I Learn Python or JavaScript?
If you want to be a real professional in this field, both Python and Javascript are vital to learn and work with. ... Javascript has flaws.. not too many functions and a bit slower too...
🌐
LearnPython.com
learnpython.com › blog › python-vs-javascript-for-beginners
Python or JavaScript: Which to Learn as a Beginner? | LearnPython.com
When choosing your first programming language, you need to consider more than just application areas. The following aspects might impact your choice: Both Python and JavaScript can be suitable for beginners, but from different perspectives:
🌐
Medium
medium.com › @tayyabaltaf › is-it-fine-to-learn-python-and-javascript-together-58c244ed053c
Is it Fine to Learn Python and JavaScript Together? | by Tayyabaltaf | Medium
August 8, 2023 - If you are a novice in the world ... fact, if you’re planning to dabble in the domain of web development, knowing both can give you a significant edge....
🌐
Quora
quora.com › How-hard-was-it-to-learn-Javascript-after-knowing-Python-Was-there-a-massive-difference-in-how-difficult-they-were-to-learn
How hard was it to learn Javascript after knowing Python? Was there a massive difference in how difficult they were to learn? - Quora
I have done the opposite thing—or, I have learned JavaScript in addition to Python after being a Python programmer for half a decade (or something). In general, Python and JavaScript are very similar, and adjusting to the different syntax shouldn’t be much of a problem. I find Python syntax nicer and a bit more expressive (JavaScript tends to have a bit more boilerplate), but it’s not a big deal either way. If you’re coming from vanilla JavaScript, you may also come to appreciate the strong typing in Python, which tends to make Python programs easier to debug than JavaScript, but if you’re coming from TypeScript, which catches type errors at compile time, you may not be thrilled with Python’s dynamic typing (Python does have type checking with MyPy and other libraries, but TypeScript is a bit nicer).
🌐
IDTech
idtech.com › blog › should-you-learn-python-or-javascript-first
Python vs. JavaScript | Which Should You Learn First?
March 1, 2023 - On the one hand, Python is easier to learn due to its readability, but JavaScript is more widely used for web development. On the other hand, Python might run slower than other languages, and JavaScript can be more difficult to debug. If this does nothing for you, here are some guiding points ...
🌐
Skillcrush
skillcrush.com › home › blog › learn to code › coding languages and tools › javascript
If You’re Wondering Whether to Learn JavaScript, the Answer is YES
June 23, 2023 - That’s right—if you are setting out to learn your first programming language after handling HTML and CSS basics, you should start with JavaScript before Python, Ruby, PHP or other similar languages.
🌐
DEV Community
dev.to › kachiic › learn-python-as-a-javascript-developer-422j
Learn Python as a Javascript developer - DEV Community
July 19, 2022 - As a coder, you should always be looking to expand your knowledge. The best way to do this is by learning different coding languages and frameworks. I myself am a Javascript and Python fullstack developer and like most self-taught developers, I started by learning HTML, CSS and Javascript first. Eventually I learned Python and found it very useful. Python is great for handling backend data and creating simple scripts like web-scrapers. If ...
🌐
Winatalent
winatalent.com › home › choosing between python and javascript: which programming language is right for you?
Python or JavaScript: Which is Right for You? | Winatalent
November 5, 2023 - In that case, JavaScript is a better ... course to learning JavaScript for beginners. But if you want to focus entirely on back-end development, learning Python would be better. Before you learn any of these languages, it’s helpful ...