JSFiddle - React, Tailwind, and code Playground

by silverwind

HTML

<div><span>first</span><span>second</span></div>

CSS

span + span::before {
  content: ', ';
}

JavaScript

alert(document.querySelector('div').textContent)