Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I briefly checked for dupes of this question, since I was certain they would exist, but I couldn't find any!

So, I am going from Java to JavaScript; what can I read that will make sense? (and if I just have to forget everything about Java and start over, that's fine too.)

share|improve this question

3 Answers

up vote 10 down vote accepted

Java is to JavaScript as Ham is to Hamster

they're very different, but here's a guide I found online.

share|improve this answer
4  
I prefer "as car is to carpet", but they're all good – Gareth Oct 29 '10 at 21:58
@Gareth: youtube.com/watch?v=kntawlgAonA – Andy E Oct 29 '10 at 21:59
@Adam: this guide is kinda hard to follow :( – sova Oct 29 '10 at 22:38
1  
@Andy E: I've got a badge, but I'm not a badger – Gareth Oct 29 '10 at 22:39
1  
@sova - Sorry. Personally I recommend Doug Crawford's classic amazon.com/JavaScript-Good-Parts-Douglas-Crockford/dp/… as a JavaScript book. But, I was looking for a source specific for Java programmers – Adam Oct 29 '10 at 22:40
show 3 more comments

You should be watching every video and reading every book the Doug Crockford has put out.

I'd also recommend reading a lot from John Resig, the genius behind jQuery.

share|improve this answer

I was in your situation.

Remember:

  • Javascript is not OOP, whatever some people say.
  • Variables are function scope.

Books and links:

In this moment, after test few frameworks, I am using http://classy.pocoo.org/

And perhaps: http://docs.jquery.com/Tutorials

share|improve this answer
3  
-1: Javascript is OOP, whatever some people who have no idea what OOP means say. – Michael Borgwardt Oct 29 '10 at 22:15
This answer is informative and I don't think it should be voted down, Michael can you explain what you mean? – sova Oct 29 '10 at 22:17
2  
@sova: Michael means that JavaScript is an Object-Oriented Programming language. That's why he down voted the post, because it's giving incorrect information. It is definitely OOP, read what Crockford has to say on the matter, under the Object-Oriented heading. – Andy E Oct 29 '10 at 22:42
@Michael: Javascript is OOP as C is OOP !!! Objective C is OOP, Java is OOP, etc.. but Javascript no! You could simulate this (read reference in answer) but Javascript is not designed with OOP in mind. @Adam used a real OOP (java), he understands this answer when he start to use Javascript. – angelcervera Oct 30 '10 at 9:47
@Andy: I read your link, and definitely, javascriot is not a OOP. As i said, you could simulate then (like in C or assembler), but is not a OOP. – angelcervera Oct 30 '10 at 9:59
show 6 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.