const _deleteRepeat = array => {
    // 补全代码
    return [...new Set(array)]
}
使用SET的唯一性去重