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.
*/
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.
*/
javascript
const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
if (index > -1) {
array.splice(index, 1);
}
// array = [2, 9]
console.log(array);
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.
javascript
const javascript = 'Hello world';
console.log(javascript);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us