Using lodash to check whether an array has duplicate values
问题 What do you all think would be the best (best can be interpreted as most readable or most performant, your choice) way to write a function using the lodash utilities in order to check an array for duplicate values. I want to input ['foo', 'foo', 'bar'] and have the function return true . And input ['foo', 'bar', 'baz'] and have the function return false . 回答1: You can try this code: function hasDuplicates(a) { return _.uniq(a).length !== a.length; } var a = [1,2,1,3,4,5]; var b = [1,2,3,4,5,6