Skip to content

Instantly share code, notes, and snippets.

@jsjoeio
Created May 21, 2017 13:01
Show Gist options
  • Save jsjoeio/5bbde68f956fa83b2575d31d63e2b7c2 to your computer and use it in GitHub Desktop.
Save jsjoeio/5bbde68f956fa83b2575d31d63e2b7c2 to your computer and use it in GitHub Desktop.
function getIndexToIns(arr, num) {
var added = arr.push(num);
var sortArr = arr.sort(function(a, b) {
return a - b;
});
var index = sortArr.indexOf(num);
return index;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment