方法一 ---- 利用数组filter + indexOf方法去重
方法二 ---- 利用数组forEach + indexOf方法去重
方法三 ---- 利用数组from方法 + Set构造函数去重 注:这种方法还无法去重空对象
方法三 ---- 利用数组from方法 + Set构造函数去重