I used text to speech converter. The voice quality is quite good.
My jQuery application site (demo and download): https://sites.google.com/site/jqueryapplicationjiansenlu/
My Javascript tutorial site: https://sites.google.com/site/jiansenjavascripttutorial/
My blog: http://jiansenlu.blogspot.com
JavaScript Syntax
1) Unlike HTML, JavaScript is case sensitive.
2) Each statement ended with semicolons;
3)Comment syntax is the same as in C++ //, or /* */
4) Variables in standard JavaScript have no type attached, for example var x=0;
5) String can be created by characters between double or single quotes.
For example var c1="Hello"; var c2='World';