if and else para mostrar imagenes

PHOTO EMBED

Tue Nov 29 2022 15:57:27 GMT+0000 (Coordinated Universal Time)

Saved by @modesto59 #html

/* if and else to shown image */
var image = document.createElement('img');
if (Math.random() > 0.5) {
  image.src = 'http://www.catgifpage.com/gifs/318.gif';
} else {
  image.src = 'http://www.catgifpage.com/gifs/320.gif';
}
document.body.appendChild(image);
content_copyCOPY