+ 4
How do I add a variable value into the () of a document.write function?
4 Respostas
+ 15
var x= "Hello"
function myFunc(){
document.write(x)
}
myFunc()
???
+ 5
var s = "world";
document.write("hello "+s+"!");
+ 2
var x="hi"
console.log (x) // print hi
0
I am interesting with this