I'm looking for a way to make what I would call a "bullet separated paragraph list" using a javascript array of strings. Example:
item • item • item • item • item
item • item • item • item
item • item • item • item • item
I can, of course, loop through these, adding bullet points after all but the last item, but I need to make sure that the bullet points don't appear at the end of a line, especially when the page is resized. Would I have to re-render the element every time the page is resized or is there a better strategy?