Underscore.js Arrays: Difference

HTML

<script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
<a target="parent" href="http://underscorejs.org/#difference">Learn More</a>

JavaScript

var arr = ["3"];
var arr2 = ["1","3","4","114"];

var testDifference = _.difference(arr,arr2);

console.log(testDifference);
//[7845, 5645435, 654645654645, 3423433, 57767676] 
//Finds all of unique entries that are not shared by any two of the arrays