Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Yea sure Python and Node js are good to learn since the syntax isnt that difficult.. give them some online recources later on though aswell, i recommend w3schools
-
Make sure to explain what expressions and statements are so they don't do this:
if (some_bool) {
return true;
} else {
return false;
} -
KDSBest7752yTake an ooen book for example: https://openbook.rheinwerk-verlag.de/...
Sorry it's a german one, but check out the ToC and that's a common order
My friends were wondering if I could teach them the basics of coding. What order should I do it in? The basic things I want to teach them are input/output, data types (numbers, strings, arrays, etc.), flow control (loops, if/else), functions, variables, and maybe oop if I'm in the right mood.
Also, would python be a good language to start with? It's definitely the language I know the best.
question