Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Word Count Functionality Improvement #395

Open
algowhiz opened this issue Oct 27, 2024 · 0 comments
Open

Word Count Functionality Improvement #395

algowhiz opened this issue Oct 27, 2024 · 0 comments

Comments

@algowhiz
Copy link

https://github.com/DhanushNehru/Hacktoberfest2024/blob/main/JavaScript/countWords.html

Description of Issues :
The original JavaScript code incorrectly counts characters instead of words. It also does not handle cases where the user enters only spaces. Additionally, there was an unused variable, and some improvements can be made for accessibility and user experience.

corrected code :
const text = document.querySelector('#text');
const ans = document.querySelector('#ans');
const button = document.querySelector('#button');

const words = () => {
if (!text.value.trim()) { // Check for empty or whitespace-only input
ans.innerHTML = 'Please Enter Something to count';
} else {
const wordCount = text.value.trim().split(/\s+/).length; // Split by spaces and count
ans.innerHTML = wordCount;
}
}

button.addEventListener('click', words);
text.addEventListener('keydown', (e) => {
if (e.key === 'Enter') {
words();
}
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant