ready to move up...
well i have basic javascript down. but i am having problems finding any place where i can learn advanced javascript. anyone know of a site with a good advanced tutorial.
anyone can do any amount of work provided it isnt the work they are supposed to be doing.
Abhishek Reddy posted this at 04:46 — 5th November 2002.
He has: 3,348 posts
Joined: Jul 2001
http://www.javascriptkit.com
It has basic and advanced JS tutorials, but I don't think there's any such thing as "advanced javascript" as a whole. It really depends on the complexity of the solution you're trying to find. That can include many "easy" steps, or one incredibly hard-to-grasp concept.
Megan posted this at 14:18 — 5th November 2002.
She has: 11,421 posts
Joined: Jun 1999
Have you done Webmonkey's tutorials? They have both basic and advanced tutorials. You also might want to look into a book, particularly one with a good reference section.
Megan
Connect with us on Facebook!
dk01 posted this at 21:07 — 5th November 2002.
He has: 516 posts
Joined: Mar 2002
I want to write some js tut's but haven't gotten around to it. Sorry!
-dk
jammin posted this at 23:04 — 5th November 2002.
They have: 222 posts
Joined: Sep 2002
i went through webmonkeys... didnt help much.
jammin posted this at 22:53 — 6th November 2002.
They have: 222 posts
Joined: Sep 2002
i finnaly got around to checking the javascriptkit page, not really what i was looking for, i need some site that would have things that would help increase my skill with javascript to the point where i wouldnt need to rely on other peoples scripts to help write my own.
i really need to study because my internet applications teacher has assigned me and the other two advanced students javascript projects to work on. the teacher doesnt even know javascript and doesnt have any books on it that would help us so we all have to turn to online help.
anyone can do any amount of work provided it isnt the work they are supposed to be doing.
hagar posted this at 23:22 — 6th November 2002.
They have: 104 posts
Joined: Oct 2002
your teacher does not know javascript, but assigns you javascript projects to work on? What is he grading you on? Aesthetic appeal?
How would the teacher know if you have written poor unstructured code or good well planned structured code?
You cant grade an application on "it works good" or "it doesnt work bad"
When I was in college, i made it a point to drop classes when I knew more then my lecturer on the subject being taught. Otherwise I'd end up tutoring the class, and I didnt get paid to do the lecturers work;-)
My advice would be, go look at an index of javascript commands(like this: http://www.w3schools.com/js/default.asp ), and use common programing concepts to design your app, then use the reference to fill in the neccessary coding. Did your lecturer bother to teach you pseudo code?
"I ’ll make thee glorious by my pen, And famous by my sword." - James Graham, Marquess of Montrose (1612–1650)
Suzanne posted this at 00:02 — 7th November 2002.
She has: 5,507 posts
Joined: Feb 2000
hagar has an excellent suggestion. though I'd hasten to add that if you rely on other people's scripts to do things, you probably don't have basic javascript down.
Abhishek Reddy posted this at 00:40 — 7th November 2002.
He has: 3,348 posts
Joined: Jul 2001
I hardly think that reading tutorials will get you anywhere more advanced. What you should concentrate on is programming logic. You should be able to create any solution using a flowchart and pseudo-code. This requires very little intimate knowledge of the language of choice itself. Once you've come up with a sensible outline of your proposed script, then you can start looking for operable objects/methods to use.
hagar posted this at 01:58 — 7th November 2002.
They have: 104 posts
Joined: Oct 2002
i was looking to link a pseudocode tutorial into this thread for jammin but couldnt find one that was generic enough, anyone out there got linkage to a good pseudocode tute?
"I ’ll make thee glorious by my pen, And famous by my sword." - James Graham, Marquess of Montrose (1612–1650)
Abhishek Reddy posted this at 02:19 — 7th November 2002.
He has: 3,348 posts
Joined: Jul 2001
A search on Google yielded these results:
http://www.tvcc.cc.or.us/staff/fuller/cs161/dchap2/dchap2.html
http://www.tvdsb.on.ca/saunders/courses/ICS3M/Programming/pseudo_code_guidelines.htm
http://www.cs.uoregon.edu/~dhofer/pseudocode.html
They're not the best, so I'm still looking. I'll add more if I come across any others.
jammin posted this at 02:48 — 7th November 2002.
They have: 222 posts
Joined: Sep 2002
i think you people misunderstood me... i do have a VERY good understanding of basic javascript. im sick of going through tutorials that say they are advanced but they just teach you what a variable or function is. i have been through the w3schools tutorial many times.
i want one that could help me understand how to use the tags more effectively, i have the knowledge, but i dont have any idea how to use it to put together a script.
(and even though my teacher doesnt know javascript i have to take the class, it is required for the c++ programming class which i will be in next semester)
anyone can do any amount of work provided it isnt the work they are supposed to be doing.
hagar posted this at 03:25 — 7th November 2002.
They have: 104 posts
Joined: Oct 2002
I wasnt referring to the w3schools tutorials, but its object references, which are the real meat of scripting languages, intimate knowledge of the objects will allow you to discard tutorials. The foundation is the application planning, which alot of programmers design in pseudocode.
Knowledge of the principles of logical design is what leads to advanced scripting, coupled with the knowledge of the objects in the language you are scripting in, can lead to some powerful applications.
Noone can point to a site and proclaim, all keys to advanced scripting lay here. Its something we all learn individually through examination of problems, conceiving of programmatic solutions, and trial and error with the knowledge we do have. And google;)
"I ’ll make thee glorious by my pen, And famous by my sword." - James Graham, Marquess of Montrose (1612–1650)
Abhishek Reddy posted this at 03:58 — 7th November 2002.
He has: 3,348 posts
Joined: Jul 2001
Yup. As I said earlier, it depends on the solution of the problem you're trying to find.
IMO, the only thing that makes writing a script "advanced" is how you work around the language.
The idea behind flowcharts & pseudocode is that you havea free reign over what goes and what doesn't, within the boundaries of logic. But you may find that not all your planned steps are feasible, restricted now by the bounds of the language.
For example, say, a certain method you planned on using isn't available in client-side JS. Normally, all it takes is for you to break down your one step into simpler subroutines.
How you work around these complications is what makes a script advanced. Sadly, there are no tutorials for this - it's only up to how you apply logic.
hagar posted this at 04:13 — 7th November 2002.
They have: 104 posts
Joined: Oct 2002
Hmm does that mean my ugly messy code with 500 work arounds is advanced, yet my neat code that required no work around is basic? lol;)
what really constitutes advanced code? a size? a complexity? an efficiency? usefullness? or an insight?
I'd argue, a bit of each. But momma alweys sed i wuz dum:)
"I ’ll make thee glorious by my pen, And famous by my sword." - James Graham, Marquess of Montrose (1612–1650)
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.