Install spidermonkey

$ js
js> arr = [ 'mangoes', 'apples', 'bananas', 'cherries' ]
mangoes,apples,bananas,cherries
js> arr[0]
mangoes
js> arr[3]
cherries
js> testdict = { 'name' : 'Girish', 'age' : '79', 'sex' : 'male' }
[object Object]
js> testdict['name']
Girish
js> testdict['sex']
male


It is a great tool for web development. I have used it several times
to validate my javascript code.

But javascript is such a complex programming language that advanced
concepts like closures
have always stumped me. I still don't understand them. And
spidermonkey cannot help
with such things I think.

For that we have firebug, a Netscape plugin which is the greatest
friend for any web developer.

We will look at that tomorrow.


-Girish
_______________________________________________
To unsubscribe, email [email protected] with 
"unsubscribe <password> <address>"
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to