Sorting algorithms/Shell sort: Difference between revisions

Content deleted Content added
Add javascript example
Change Javascript header to the right text
Line 679:
}</lang>
 
=={{header|LisaacJavascript}}==
<lang Javascript>function shellSort (a) {
for (var h = a.length; h = parseInt(h / 2);) {