在帖子上显示点赞,其中数组指定使用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
热门推荐
7 带清的简短祝福语
10 大学报道祝福语简短
11 大雪生日祝福语大全简短
12 他舅生日祝福语简短
13 锡婚祝福语简短霸气
14 传统新婚祝福语创意简短
15 分别祝福语简短情侣短句
16 简短霸气的考试祝福语
17 近代生日祝福语简短精辟
18 18岁简短祝福语经典