views:

58

answers:

2

I'm a front end Flex developer peeking over the wall at html. One of the things I have a hard time with is weak typing in Javascript. I know many developers say they prefer it. How do I stop worrying and learn to love the weak typing? Are there best practices for variable naming that help make var types human readable?

Another thing I have trouble with is getting by without my trusted compiler errors and warnings. I'm getting along with firebug. Is there anything else I should have in my toolkit?

A: 

How do I stop worrying and learn to love the weak typing?

it comes naturally when you start to love the language (JavaScript).

Is there anything else I should have in my toolkit?

you should also have the Specifications/References in your bookmarks HTML4, HTML5, XML, JavaScript, DOM, CSS.

if you need tutorials and explanations, they’re easily found through google.

Dormilich
A: 

I'd recommend trying Aptana (Eclipse-based IDE) if you haven't yet - it integrates well with Firebug and will help keep you from veering too far off the road as you get comfy with the "looseness" of JS.

Toss in the requisite copy of Javascript: The Good Parts (the Google TechTalk video & Douglas Crockford's site too), and you'll be well-prepared for the Javascropalypse in no time.

tadamson