Sort Element in JavaScript

  1. <html>  
  2. <body>  
  3.   
  4. <p>Sort Variable Alphabet using Java script</p>  
  5.   
  6. <button onclick="mysort()">click</button>  
  7.   
  8. <p id="vsort"></p>  
  9.   
  10. <script>  
  11. var tech= ["python""microsoft""Apple""hcl"];  
  12. document.getElementById("vsort").innerHTML = tech;  
  13.   
  14. function mysort() {  
  15.     tech.sort();  
  16.     tech.reverse();  
  17.     document.getElementById("vsort").innerHTML = tech;  
  18. }  
  19. </script>  
  20.   
  21. </body>  
  22. </html>