+ 4
Hey guys!..pls can i get to know some Step by step ways of coding a large project and algorithims
I want to focus and become good in Javascript...but its complex
4 Antworten
+ 2
You said it yourself in the title: step by step. For example, adding a button to a webpage:
* Add <button> or <input> to HTML.
* Add onClick handler to button, but simplified -- make it console.log or etc instead of the full action you want, just to see that it's working.
* Finish the real click handler.
And everything else is the same; do it in steps. When you don't know how to use a function or etc, look it up on a semi-official site (NOT SoloLearn -- plenty of amateurs teaching others here that spread misinformation) such as Mozilla Developer Network or W3Schools.
Eventually you'll go from baby steps to creating new webpage UI elements and their event handlers.
Edit: fat finger hit submit.
+ 2
thanks so much tom...I'm learning from W3schools now😀😀
+ 1
No problem :) Sorry if it seemed sarcastic; I really was not trying to be.
+ 1
I'm cool with answers like this...thanks brov