Guest User

Untitled

a guest
Jan 15th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <html> <head>
  2. <script>
  3. function cambiarColor() {
  4. //creamos un arreglo de colores
  5. let color = ["azul", "morado", "rojo","verde"];
  6. // creamos una variable entre 0 y el la longitud de arreglo
  7. // en este caso 0 a 3
  8. let random_color =Math.floor(Math.random() * color.length);
  9. // le asignamos y pintamos el clic la posicion resultante entre 0 y 3
  10. clic.innerHTML=color[radom_color];
  11. }
  12. </script>
  13. </head> <body>
  14. <p><h1 id="clic">...</h1></p>
  15.  
  16. <button id="cambiar" onclick="cambiarColor()">
  17. ¡Cambiar!</button>
  18.  
  19. </body> </html>
Add Comment
Please, Sign In to add comment