Word Counter

Count words

Tier 2
Output will appear here.

For informational purposes only.

No data is stored or transmitted.

(function(){ const input = document.querySelector('#text'); const display = document.querySelector('.result'); const calc = ()=>{ const text = input?.value || ''; const words = text.trim().length ? text.trim().split(/\s+/).length : 0; const chars = text.length; const sentences = text.split(/[.!?]+/).filter(Boolean).length || (words?1:0); const minutes = Math.max(1, Math.round(words / 200)); if(display) display.textContent = `Words: ${words}\nCharacters: ${chars}\nSentences: ${sentences}\nReading time: ~${minutes} min`; }; document.getElementById('run-btn')?.addEventListener('click', calc); input?.addEventListener('input', calc); })();