0
I need assistance in this code on how to break the output so that each is in a new line. It ouputs 2310.
var person={ name:"Samuel", age:23, career:"Programmer", height:183 }; var x=person.age; document.write(x); document.write(person.career.length);
2 Réponses
+ 1
xD hey JavaScript course said in the first place
just
document.write("<br>");
And then you get a new line
0
Thanks