You can use the filter function to remove data you don’t want in a array:
var selectionList = document.querySelectorAll(".selected-text");
myFormItems.value = [...selectionList].map(el=>el.textContent).filter(txt=>txt !== 'None').join('\n');
CLICK HERE to find out more related problems solutions.