JSFiddle - React, Tailwind, and code Playground

by Mark Ulybkin

HTML

<h1>Список</h1>
<ol id="spisok"></ol>

JavaScript

while (true) {

  var text = prompt("Введите что-нибудь", "ololo");

  if (text === "" || text === null) break;

  var newLi = document.createElement('li');
  // newLi.innerHTML = text;
  newLi.appendChild(document.createTextNode(text));
  spisok.appendChild(newLi);
  }