Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

SORTING OF AN ARRAY

<html> <head> <script type="text/javascript"> var a=new Array(8,4,2,6,0); document.writeln("array:"+a+"<br>") a.sort() document.writeln("array:"+a) </script></head> </html>

OUTPUT

You might also like