views:

46

answers:

1

I've read a lot 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 separated 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 necessary, and read that in. I know how to "think" javascript, not how to write it.

how do I learn the easiest/fastest way?

+1  A: 

Read this article Mastering Javascript Arrays, and pratice every example in FireFox console, hope it helps

Ding