Topic awaiting preservation: Array and calculation problem (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: NZ |
posted 06-18-2003 23:50
Hi, guys. How are you? Long time no see on here. quote:
|
Maniac (V) Inmate From: Brisbane, Australia |
posted 06-19-2003 02:14
Well, everything seems to be working just fine in your uploaded file, but since you mentioned you were having problems understanding arrays I thought I'd try and shed some light here. |
Paranoid (IV) Inmate From: NZ |
posted 06-19-2003 07:06
Hi, Dracusis. Thanks a lot. code: var month = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun");
|
Maniac (V) Inmate From: Brisbane, Australia |
posted 06-19-2003 07:57
THat's because your re-assining the values in the array that contains the month names. code: var promptArray = [] // Quick'n'dirty way to make a null array variable |
Paranoid (IV) Inmate From: NZ |
posted 06-20-2003 04:34
Hi, Dracusis. |