我有一个带有ID,通行证等的用户对象,还有一个Vacations对象数组(假期),每个对象都有“追随者”,后面跟随着所有用户 id ( “喜欢”)度假。
赞:
vacations: [{name:'Germany', Price:200 ,followers:['fsdas7213nasd'], follows:1 }]
现在,我想对休假进行排序,以首先显示包含用户ID的休假。我该怎么办?
答案 0 :(得分:1)
vacations.sort((a, b) => b.followers.includes(userID) - a.followers.includes(userID));
两个includes
调用都将导致一个布尔值,由于相减,该布尔值将转换为false-> 0,true-> 1。因此整个表达式结果为