|
|
|
|
|
by triceratops
2020 days ago
|
|
> I bet most js devs would not be able to make a "hello world" in C. Like if you just gave them a text editor and the gcc manpage? Why would they know? It's an entirely new language to them. How are you going to learn a new language's syntax or library functions without a reference? If you gave a JS programmer a C programming textbook or tutorial they'd type out and run Hello World in about 2 minutes, like anyone else. |
|
There are lots of js programmers, who do programming by modifying copy and paste bits of code in a try and error method.
They don't know they use a dynamic scripting language. They don't know what a compiler is. They oft even don't know exactly what a variable is. So I doubt they boot up and run C in about 2 minutes. And man page? Terminal? What is that?
And if they manage after a while, they still don't understand printf, as it already uses pointers. They don't understand types. Etc.
Those are the people, who are eventually able to make a website somewhat work, but they never learned the basics. Thats why there are lots of terrible js devs around.
Oh and like someone else has mentioned, of course because people coming to js and insist to write js code in C style or in java style. When js is a prototype based language, requiring different methods. (even today when there is finally class support)