👤

1.Write the output of the following if x=100 , y= 200

if (x == y)
document.write("*")
else if (x<= y)
document.write (x)
else
document.write("$")Immersive Reader
(1 Point)
*
x
$
100