在帖子上显示点赞,其中数组指定使用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