jennschiffer / jortsort

the official website for jortSorting

Home Page:http://jort.technology

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jortSort

jort.technology

sorting is over as we know it. more info soon.

var jortSort = function( array ) {

  // sort the array
  var originalArray = array.slice(0);
  array.sort( function(a,b){return a - b} );

  // compare to see if it was originally sorted
  for (var i = 0; i < originalArray.length; ++i) {
    if (originalArray[i] !== array[i]) return false;
  }

  return true;
};

literally made with blood and tears

About

the official website for jortSorting

http://jort.technology

License:MIT License


Languages

Language:HTML 44.4%Language:CSS 29.3%Language:JavaScript 26.3%