JSFiddle - React, Tailwind, and code Playground

JavaScript

var input = document.createElement("textarea");
document.body.appendChild(input);

input.textContent = "Something clever here";
input.selectionStart = 2; // returns 2
input.selectionEnd = input.textLength - 2;