I need assistance in creating a unique type of list that I call a "bullet separated paragraph list" by using a javascript array of strings. For example:
item • item • item • item • item
item • item • item • item
item • item • item • item • item
While I can iterate through the items and add bullet points, I want to ensure that they do not appear at the end of a line, especially when the page is resized. Do I need to constantly re-render the element every time the page size changes, or is there a more efficient method?