Beginner project in JS | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Beginner project in JS

What do You think I should try?

17th May 2017, 9:34 AM
CodeGuy
3 Answers
+ 5
Try to make a to do list. From simple to complicated. If you know how to program a basic task input to do list, you know most of the basic Javascript codes.
17th May 2017, 9:50 AM
Calviղ
Calviղ - avatar
+ 3
Make a simple to do list Html file something like below: <body> <form id="form"> <label>Task: </label> <input type="text" id="task" /> <input type="submit" value="add" id="add" /> </form> <ul id="list"> </ul> </body> Use Javascript to check form submit event. In the event callback, get the text from task input. Eventually update the new task to the list ul#list.li.
17th May 2017, 10:37 AM
Calviղ
Calviղ - avatar
+ 1
Calvin what do you mean when you say a to do list?
17th May 2017, 10:27 AM
CodeGuy