How do i make a space between vars in JavaScript?
hey guys, I don't actually know whether this is supposed to be in this forum or not. anyways, here is the code and how it looks like if opening it in the browser. im a total noob so don't be triggered XD im trying to get a space between the vars.


Thanks
- - - Updated - - -
It might be hard to read the code btw, but I attached another image so you can easily see the problem and the code

- - - Updated - - -
still looking for answers
Code:
var r1 ="999999999999999999999999999999999999999999999999999999999999999999999"; // makes var with numbers var l1 = r1.length; // makes a var. it doesnt calculate it just counts the length of the numbers. this is 69 because there are 69 9's document.write(l1); // it writes it on your screen/executes the code? im not sure what is this im 12 var r2 ="moop"; // makes a var with letters by using "" i think. i still use it for numbers aswell anyway. var s1 = r2.substring(1, 4) // it only starts showing from the second letter to the fourth. that will make oop document.write(s1); // same as the above. only its a different var
Thanks

- - - Updated - - -
It might be hard to read the code btw, but I attached another image so you can easily see the problem and the code


- - - Updated - - -
still looking for answers


