JSFiddle - React, Tailwind, and code Playground

by himel023

HTML

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <link rel="stylesheet" type="text/css" href="style.css">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>✌</title>
  </head>

  <body> <!-- This piece of Javascript will randomly decide an image for your homepage. -->

    <script>
  var pictures = ['images/Aging.png', 'images/Teddy.png', 'images/Socrates.png',];
var picture = pictures[Math.floor(Math.random() * pictures.length)];
document.write('<img src="' + picture + '"/>');
</script>

  </body>

</html>

JavaScript

var pictures = ['images/Aging.png', 'images/Teddy.png', 'images/Socrates.png',];
 
 var picture = pictures[Math.floor(Math.random()*pictures.length)];
 
 console.log(picture)