Word Count Tool
/* Add your custom styles here */
Start Counting
Word Count: 0 | Sentence Count: 0
function countWords() {
var inputText = document.getElementById(‘input-text’).value;
// Remove extra white spaces and trim the text
var cleanedText = inputText.replace(/\s+/g, ‘ ‘).trim();
// Count words and sentences
var wordCount = cleanedText.split(‘ ‘).length;
var sentenceCount = cleanedText.split(/[.!?]+/).length – 1;
// Update the result
document.getElementById(‘word-count-result’).innerHTML = ‘Word Count: ‘ + wordCount + ‘ | Sentence Count: ‘ + sentenceCount;
}