在帖子上显示点赞,其中数组指定使用JavaScript顶特定帖子的人的姓名
问题
我们需要编写一个包含名称(字符串)数组的JavaScript函数。该数组指定喜欢某个社交网站上特定帖子的人员的姓名。
如果点赞次数少于或等于3,则我们的函数应简单返回所有名称,表明这些人喜欢此职位,但如果点数大于3,则我们的函数应返回前两个名称和剩余的计数。
示例
以下是代码-
const names = ['Ram', 'Manohar', 'Jay', 'Kumar', 'Vishal'];
const displayLikes = (names) => {
return [
'no one likes this',
`${names[0]} likes this`,
`${names[0]} and ${names[1]} like this`,
`${names[0]}, ${names[1]} and ${names[2]} like this`,
`${names[0]}, ${names[1]} and ${names.length - 2} others like this`,
][
Math.min(4, names.length)
];
};
console.log(displayLikes(names));输出结果Ram, Manohar and 3 others like this
热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短