判断数组中重复值 哈希

  作者:chrispy

isRepeat (arr) {var hash = {}for (var i in arr) {if (hash[arr[i]]) {return true}hash[arr[i]] = true}return false}