DeveloperBreeze

Snippets Programming Tutorials, Guides & Best Practices

Explore 196+ expertly crafted snippets tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

JavaScript Word Count in a Sentence

Code January 26, 2024
javascript

// Input sentence
const sentence = 'This is a sample sentence.';

// Calculate word count by splitting the sentence at spaces
const wordCount = sentence.split(' ').length;

// Display the word count
console.log('Word Count:', wordCount);