DEV Community

Discussion on: How to learn js easily

Collapse
 
ashishxcode profile image
Ashish Patel

Open your browser go to MDN docs of javascript read about this things
-variables (var,let,const)
-datatype (array,object etc...)
-condition statements (if,else)
-looping statements(for, while or map)
-function and classes (Arrow function)
-DOM manipulation (HTML & CSS basic knowledge needed of this)
-build a project using this knowledge you're learning so far

Project ideas
-To do list app
-Image slider
-Expense tracker app
-Make a CLI quiz app
-Weather app (your need to know about API calls)

focus on project-based learning make learn something then try to implement by your own.

Collapse
 
9885003993 profile image
Somesh omkar

thank u