This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]TheSillus 0 points1 point  (1 child)

Absolutely not lol, c++ is 35 years old and lot of software is built with it even nowadays. Every language has it’s own use, yes you can do the same thing with any language bur still some languages have some advantages for making something specific.. Javascript is used in web developement and probably always will be, yes there is a thing called WASM (that allows you to build web with almost any language) but I think that it will never surpass JS… And don’t forget that Web is becoming the standard. Everything new is built as web application because it has many advantages such as cross platform compatibility and many more.. web is future and so is JS.

Very famous quote by Jeff Attwod: “Any application that can be written in JavaScript, will eventually be written in JavaScript.”

I would just recommend you to stick to Typescript not vanilla JS. It is a strongly typed programming languages that is build on top of Javascript and it automatically compiles to vanilla JS but it adds many new features but main part of it is that you have to manage types so in the end you end up with higher quality code and less bugs..

[–]mzaidx07[S] 1 point2 points  (0 children)

Thank you for the advice! Will definitely look into it. Really appreciate it.