Skip to content

Instantly share code, notes, and snippets.

@rwoloszyn
Created May 31, 2016 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwoloszyn/dd575ea1963612800b779fbcce595f8f to your computer and use it in GitHub Desktop.
Save rwoloszyn/dd575ea1963612800b779fbcce595f8f to your computer and use it in GitHub Desktop.
Create unique list in JS with underscorelibrary
function addFailedTask(taskID){
if(taskID != null){
$scope.failedTaskList.push(taskID);
}
$scope.failedTaskList = _.uniq($scope.failedTaskList);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment