Basics of JAVASCRIPT
BASICS
Javascript has a list of basics things explained below-
variables
We can create elements by
var x;
let y;
We can assign value to them as
x = 5;
y = 6;
let z = x + y;
Or we can directly create and assign value in 1 step
var x = 5;
If you have t...
somanshu63.hashnode.dev4 min read