Well written guide on the basics of variable declaration and use, . The audience of new programmers and developers is growing in leaps and bounds with faster technology and blockchain adoption.
Just a quick note:
var one = 1, two = 2, three = 3;
var five = one + two + three;
-> the value of five is: 5
The value of five should be 6 here. Look forward to more of these posts.
RE: The JavaScript Journey #6 - Variables