+ 5
What is the relationship b/w java and javascript?
10 Respostas
+ 14
Just that word "java" . Nothing else.
+ 7
A marketing gimmick used by Netscape.
They named it Javascript, as Java was the hot language then.
+ 6
They are both object Oriented and umm.......
+ 6
This is like asking "What is the relationship b/w ham and hamster?"
There are totally no relationship.
+ 5
1. The rhyme in the name Java.
2. the principles of javascript when well understood will help in the understanding of java
+ 5
Java != javascript
the first is OOP
the other is a scripting language
+ 4
Thank you all
+ 1
Nothing...they just happen to be named kind of the same thing
No joke
+ 1
They are completely different
Java is more like c++
And JavaScript is more like python or ruby
+ 1
Just compare their “Hello, World” programs
JavaScript:
console.log("Hello, World!”)
Java:
public class Main{
public static void main{
System.out.println("Hello, World!");
}
}