hi,
const testerX1 = [5, 6, 7, 8, 9];
document.getElementById("Test_out1").innerHTML = testerX1; // 5,6,7,8,9
const testerX2 = document.getElementById("Test_out1");
What should i do next to get my 5,6,7,8,9
back from testerX2
?
Test_out1
is just a p
tag
Any help,
thanks