I decided to start looking at the simple products and obviously look at coding for dummies..
https://www.dummies.com/programming/coding-for-dummies-cheat-sheet/
I was very easy to understand as it gives you the definition of each word and the process of it. Everything is explained in the dummiest way possible.. believe it or not.
Then I decided to focus mainly on JavaScript .. on the website below once again it explains you the simple steps of what means what and how you can use it.
https://zellwk.com/blog/js-functions/
For example;
A function is a block of code that executes a task. Such as; drawing a circle or empty a bucket, etc.
function = a keyword that tells JavaScript that you're doing a function
functionName = is the actual name of the function
The name of the function can be anything as long as it follows the same rules as declaring variables. It also needs to follow certain rules;
1. must be one word
2. it consist only of letter, numbers or underscores
3. it can not begin with a number
4. it also can not be any of these https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#Keywords
I then discovered another website as Lucy was using it. It's very helpful because it allows you to do it step by step while explaining what the elements and the functions do. It also let's you try and try instead of just showing you the end product. That's good because the more you do it the more you learn how to fix it and do it right.
https://www.codecademy.com/courses/welcome-to-codecademy/lessons/welcome-to-codecademy/exercises/change-physics?action=resume_content_item&fbclid=IwAR2W9ptMRxojLgXc8XwJR2g5UuSwv8iyd-rbZyGaGSNW_VVwZdf7s2MvR94&modal=pro-trial-welcome
Other helpful websites;
https://funprogramming.org/
https://www.lynda.com/Processing-tutorials/Welcome/97578/113141-4.html
Comments