Before you learn how to read and write JavaScript language itself, you need to become familiar with some fundamental concepts in computer programming.They will be covered in Three posts:
- What exactly is a script and how do I create one?
- How do computers fit into the modern world?
- How can I compose a script for any web page?
Once you have learned the basics, the following posts will show you how the JavaScript language can be used to tell browsers what you want them to do.
SUMMARY
Each and every time a script runs, it may use a subset of all of the instructions.
Computers approach responsibilities in different ways than people, so your instructions must allow the computer to solve the task programmatically.
In order to address composing a script, break up your goal straight into a series of tasks after which work out every step required to accomplish that task (a flowchart can help).
You can read the intro to the whole series here.
Leave a Reply