Hi Dew, I agree with Marc, the best way to learn JS is by coding stuff. I would suggest taking some low level library components as example and then code them from scratch. E.g. try building an array method that iterates over the elements and applies a function to each element. Or if you want something more daring, try building your own AJAX component.
If you want to look at the code of others, I'd suggest looking at the source code of a framework like YUI or Prototype.js and see if you can dissect it, but that's still very theoretical. I really think it's good to learn coding the absolute basics like iterators, before you take on a larger project, because once you understand the fundamentals, you can always build larger projects by using a framework for that low level stuff. Technically, there's no reason to reinvent the wheel and build your own framework. But it sure helps you learn the language :). Cheers, Ron On Sun, Jan 9, 2011 at 1:49 PM, devv <[email protected]> wrote: > Hi > > I am dew, and I have been studying JS and css stuff for a month now > and I think I have got enough base covered to do some real stuff. I > mean I have learned enough theoretical part and I think its time to so > some real time stuff with it. I don't wanna jump directly to some > projects because I am still not sure abt my skills in JS. So, it would > be great if you could pitch in some suggestions to how to go on from > here. > > P.S. of the top of my head, I can think of assisting someone with > their projects. So, if anybody is kinda in need of a assistant or > someone to help, I would be glad to do so for free. I just need to > employ my skills in the right direction. :) > > -- > To view archived discussions from the original JSMentors Mailman list: > http://www.mail-archive.com/[email protected]/ > > To search via a non-Google archive, visit here: > http://www.mail-archive.com/[email protected]/ > > To unsubscribe from this group, send email to > [email protected]<jsmentors%[email protected]> > -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/[email protected]/ To search via a non-Google archive, visit here: http://www.mail-archive.com/[email protected]/ To unsubscribe from this group, send email to [email protected]
