Displaying Half Star Rating

Hey Andreas & Yisrael,

Thanks for the advises! I have been searching for the half star symbol to place in the code, but couldn’t find it. For the “star image” that you mentioned, are you referring to an image file that is placed in the page design and not a font that can be placed in the code below?

const stars = ['1Star', '2Stars', '3Stars', '4Stars', '5Stars']; 
function renderStars(num) {
 if (num >= 1 && num <=5)
 return stars[num-1];
 return stars[0];
}

I have replaced the star symbols with 1Star, 2Stars etc, as I am unable to publish the comment when the star symbols are there.