Header Ads

Word & Character Counter



Word & Character Counter

Word & Character Counter

Words Count: 0
Characters Count: 0
const wordCount = document.getElementById('word-count'); const charCount = document.getElementById('char-count'); textarea.addEventListener('input', updateCounts); function updateCounts() { const text = textarea.value; const words = text.trim().split(/\s+/).filter(Boolean); const characters = text.length; wordCount.textContent = words.length; charCount.textContent = characters; } // Initial count update updateCounts();

No comments

When Is Boss’s Day 2025? Date, Meaning, and Best Ways to Celebrate Your Boss

When Is Boss’s Day 2025? Celebrate Leadership and Appreciation on October 16   Every workplace has that one person who guides the team, make...

Powered by Blogger.