How to write code using JavaScript


Initial Setup

  1. Have a copy of the JavaScript reference and/or the W3Schools JavaScript tutorial easily available.

  2. Download/Open your favorite JavaScript text editor (JEdit works well : http://www.jedit.org/index.php?page=download)

  3. Download/Open your favorite JavaScript enabled web browser (Firefox has a good debugger : http://www.mozilla.com/en-US/firefox/)

  4. Open your web browser’s debugger window

  5. Write down your programming algorithm in English, expanding the detail as needed. (This is your pseudo code)

  6. Break your program down into smaller manageable parts (functions, statements, display, program logic, etc…)


  7. The dirty work – Rinse, Wash, Repeat

    1. Text Editor : write a small section of your program, converting your pseudo code into JavaScript using the references for assistance.

    2. Text Editor : Save

    3. Web Browser : Open your .html file and debugger

    4. Web Browser : Did you get what you were expecting with no errors?

    5. If no

      1. Text Editor : Verify correct JavaScript syntax, verify algorithm is correct

      2. Text Editor : Make ONE change to your code and hit save

      3. Web Browser : Clear your debugger and reload your page

      4. Web Browser : Did you remove the errors? : If no – repeat A – C

    6. Save a backup of your work to your dante account.

    7. Figure out what logical piece must be written next (often times this “plugs in” to the previous section)

    8. Repeat 1 – 7 until finished