What will be the output

script
function display ()
{
x =100 ;
var x1 =1000;
let x2=10000;
document.write(x + "br");
document.write(x1 + "br");
document.write(x2 + "br");
}
/script

Posted on by