Tim Driven Development | Test until the fear goes away
Tim Driven Development | Test until the fear goes away
Tim Driven Development | Test until the fear goes away
"The good news about computers is that they do what you tell them to do. The bad news is that they do what you tell them to do." -- Ted Nelson
J. Kevin Robbins wrote:The best description I've heard was "Java is to Javascript what ham is to hamburger".
OCMJD 6, OCPJP8, CISSP Baroque Potion, G+
"The good news about computers is that they do what you tell them to do. The bad news is that they do what you tell them to do." -- Ted Nelson
J. Kevin Robbins wrote:when talk comes up about moving into the 21st century they mention JSF and I just cringe. My first dev job in the Java world was doing JSF and I hated it.
Bear Bibeault wrote:I'd start off with BackboneJS --I think it's by far one of the simplest frameworks for client-side MV*.
"Leadership is nature's way of removing morons from the productive flow" - Dogbert
Articles by Winston can be found here
Bear Bibeault wrote:There are a number of BackboneJS books out there, but I haven't yet found one that I consider "The Book" to recommend. Guess all of this is too nascent to have accumulated really stellar documentation.
And no javadoc that I know of -- the nature of Java allows inspection; JavaScript is a very different animal.
What I have noticed is that the better JS devos comment public entry points with comments heavily influenced by javadoc.
"Leadership is nature's way of removing morons from the productive flow" - Dogbert
Articles by Winston can be found here
Nooriya Mishra wrote:The main difference between Java and JavaScript is that while Java is a programming language, JavaScript is scripting language.
Java uses block-based scoping; JavaScript uses function-based scoping.
Winston Gutkowski wrote:
What I have noticed is that the better JS devos comment public entry points with comments heavily influenced by javadoc.
Well, maybe someone will write one then.![]()
Nooriya Mishra wrote:The main difference between Java and JavaScript is that while Java is a programming language, JavaScript is scripting language.
First, you can't change the implementations inherited from parent classes at run-time, because inheritance is defined at compile-time. Second, and generally worse, parent classes often define at least part of their subclasses' physical representation. Because inheritance exposes a subclass to details of its parent's implementation, it's often said that "inheritance breaks encapsulation" [Sny86]. The implementation of a subclass becomes so bound up with the implementation of its parent class that any change in the parent's implementation will force the subclass to change.
Other than an incomplete syntactic resemblance and the fact that both Java and JavaScript can provide executable content in web browsers, the two languages are entirely unrelated. The similarity of names is purely a marketing ploy by Netscape and Sun (the language was originally called LiveScript; its name was changed to JavaScript at the last minute).