Arrays in javascript, how can i learn manipulating it?
- by Noor
I've read alot about the core implementation of arrays in javascript and often i find that experimenting is the best way to learn,
Right now i have multiple forms where you can type in different things,
i want to be able to pull the value of each one and put it in an array so that i can later on read them in in a dynamically created div..
Can anyone point me in the right direction?
There is a way i could get around this and that would be by using just one form, and pulling the text from there seperated by comas (,).. the thing is that i don't have the knowledge to pull the text form the form, search and find the comas, then make a new variable i think is neccessary, and read that in.. i know how to "think" javascript, not how to write it..
how do i learn the easiest/fastest way?