Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Last active March 25, 2017 06:47
Show Gist options
  • Save dmidlo/ef0608b66795d7a67466 to your computer and use it in GitHub Desktop.
Save dmidlo/ef0608b66795d7a67466 to your computer and use it in GitHub Desktop.
indexOfElement.js
function indexOfElement(arr, num) {
arr.push(num);
arr.sort(function(a,b){return a-b;});
return(arr.indexOf(num));
}
indexOfElement([5, 3, 20, 3], 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment