I have a problem with compiling in Visual Studio with JavaScript.
In line 11, where there is datos.innerHTML,
alert("Hola Mundo");
var nombre = "Juan";
var altura = 180;
var concatenacion = nombre + " " + altura;
/*document.write(nombre);
document.write(altura);*/
/*document.write(concatenacion);*/
var datos = document.getElementById("datos");
datos.innerHTML = '
<h1>Soy la caja de datos</h1>
<h2>Mi nombres es: $(nombre)</h2>
<h3>Altura: $(altura)</h3>
';
there is a problem with the compilation. Does not accept labels h1, h2, h3. Should I install an extension?