js use numbers in variable string code example
Example 1: js int
var myInt = 69420
1+1//int
1+"1"//string
Example 2: how to put strings in console javascript
console.log("string");
var myInt = 69420
1+1//int
1+"1"//string
console.log("string");