Advertisement
LightProgrammer000

Ordenamento [Reverso]

Jan 26th, 2019
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.  
  5.     <head>
  6.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7.         <title> Testando JavaScript </title>
  8.  
  9.         <style> </style>
  10.  
  11.         <script type="text/javascript">
  12.  
  13.             // Variável [Array]
  14.             var Valores = ["Rio de Janeiro", "São Paulo", "Espírito Santo", "Minas Gerais"];
  15.  
  16.             // Ordenamento alfabético
  17.             Valores.sort();
  18.            
  19.             // Estrutura de repetição
  20.             for (i = 0; i < Valores.length; i++)
  21.             {
  22.                 document.write(Valores[i] + "<br>");           
  23.             }
  24.  
  25.             document.write("<br>");
  26.  
  27.             // Ordenamento reverso alfabético
  28.             Valores.sort();
  29.             Valores.reverse(Valores);
  30.  
  31.             // Estrutura de repetição
  32.             for (i = 0; i < Valores.length; i++)
  33.             {
  34.                 document.write(Valores[i] + "<br>");           
  35.             }
  36.  
  37.         </script>
  38.     </head>
  39.  
  40. <body>
  41.  
  42. </body>
  43.  
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement