Skip to content

Instantly share code, notes, and snippets.

@stoimen
Created June 23, 2015 08:42
Show Gist options
  • Save stoimen/21f1496da3488e2c8c9c to your computer and use it in GitHub Desktop.
Save stoimen/21f1496da3488e2c8c9c to your computer and use it in GitHub Desktop.
var sequential = function(list, item) {
for (var i = 0, l = list.length; i < l; i++) {
if (list[i] == item) {
return i;
}
}
return -1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment