how use javascript variable in hmtl code example
Example 1: js variable html
<div onload="document.innerHTML(name + ' is ' + age)">
Example 2: js var
var a = 'A';
var b = a;
// è come dire:
var a, b = a = 'A';
<div onload="document.innerHTML(name + ' is ' + age)">
var a = 'A';
var b = a;
// è come dire:
var a, b = a = 'A';