javascript vs java code example

Example 1: arrays.fill java

import java.util.Arrays;
int[] myArray = new int[10];
Arrays.fill(myArray,1);//This will fill the array with 1s

Example 2: javascript vs java

/*
JavaScript: Easier to learn and run, runs in browser,
not strictly object-orientated, mainly client-side.

Java: More secure, strict OOP, steeper learning curve, 
used literally everywhere, needs to be compiled.
*/

Example 3: difference between java and javascript

java is virtualised and compiled while javascript isn't.
javascript and java aren't that similar apart from beign 
both OOP.

Example 4: java vs javascript

/*
JavaScript can be used to do neat things like creating 
animation in HTML. ... JavaScript code is run on a 
browser only, while Java creates applications that run 
in a virtual machine or browser. Java is an OOP 
(object-oriented programming) language, and JavaScript is
specifically an OOP scripting language.
*/

Example 5: java vs javascript

/*
Java script is also better than java when it comes to front-end web development 
server side performmance because node.js runs much faster than both java and 
python
*/

Example 6: javascript !! vs !

// !! used for checking availability of data 
!!'hello' // true

Tags:

Misc Example