Tutorial

String Pluralization in JavaScript Using Simplur

Published on January 10, 2020
Default avatar

By William Le

String Pluralization in JavaScript Using Simplur

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Handling plural/singular forms of nouns in English can be difficult in software. Using a library called Simplur provides you with a simple JavaScript utility to solving this problem!

There are some problems in programming that originate from the human language. One of these problems is singular/plural nouns.

A single potato is spelled “potato” but two/more is spelled “potatoes”. How do you tackle this with JavaScript?

There are several ways, but they’re not particularly elegant…

const shoppingCart = ['guitar', 'bicycle', 'shoes'];

/* 1st approach */
const noun = shoppingCart.length >= 2
  ? 'items'
  : 'item';
const text1 = `You have ${shoppingCart.length} ${noun} in your shopping cart`;
// "You have 3 items in your shopping cart"

/* 2nd approach */
const text2 = `You have ${shoppingCart.length} item(s) in your shopping cart`;
// "You have 3 item(s) in your shopping cart"

While these solution work, a new library called Simplur has a really smart way to solve it 🌟

We’re using English examples, but many languages exhibit this same problem where plural nouns are spelled differently than their singular forms.

Using Simplur

You can install simplur via npm:

$ npm install simplur

Here’s how simplur is used:

import simplur from 'simplur';

const breadCount = 12;
const text = simplur`Get ${breadCount} loa[f|ves] of bread`;
// "Get 12 loaves of bread"

Simplur uses a template string that’s tagged using the simplur function, and when the number is greater than 1 it uses the second noun form. Simple as that!

Empty Singluar Form

Simplur also works with nouns that only adds a suffix for its plural form (instead of changing a significant portion of the word):

const shoppingCart = ['shoes'];
const text = simplur`You have ${shoppingCart.length} item[|s] in your shopping cart`;
// "You have 1 item in your shopping cart"

You just need to omit the first form.

Multiple Noun Forms

You can include several nouns and simplur will “look ahead”. In English, our “demonstratives” like this/that/these/those can be easily handled this way:

const chipmunks = ['alvin', 'simon', 'theodore'];
const text = simplur`[That|Those] ${chipmunks.length} chipmunk[|s] [is|are] getting away!`;
// "Those 3 chipmunks are getting away!"

Conclusion

The English language (and most languages) is not a precise instrument and this can lead to interesting programming problems. Hopefully you found simplur useful for use in your JavaScript projects!

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
William Le

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel