javascript OR java code example

Example 1: or in js

// The Or operator in Javascript is 2 vertical lines = ||

//Example
var firstnumber = 10;
var secondnumber = 20;

//The Or operator in action
if(firstnumber > 20 || secondnumber< 10) {
}

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.

Tags:

Misc Example