DEV Community

Cover image for 1 line of code: How to the get length of the shortest string of an Array
Martin Krause
Martin Krause

Posted on β€’ Edited on

2

1 line of code: How to the get length of the shortest string of an Array

    const shortestStringLength = (arr, curr = Infinity) => (arr.forEach(el => { if (el.length < curr) curr = el.length }), curr);
Enter fullscreen mode Exit fullscreen mode

Returns the length of the shortest string entry of an Array of strings.


The repository & npm package

You can find the all the utility functions from this series at github.com/martinkr/onelinecode
The library is also published to npm as @onelinecode for your convenience.

The code and the npm package will be updated every time I publish a new article.


Follow me on Twitter: @martinkr and consider to buy me a coffee
Photo by zoo_monkey on Unsplash


Top comments (2)

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ β€’ β€’ Edited

This method is faster both on Firefox (almost 5 times as fast!) and on Chrome

const shortestStringLength = (arr, a=Infinity)=>(arr.forEach(i=>{if (i.length<a) a=i.length}),a)
Enter fullscreen mode Exit fullscreen mode
Collapse
 
martinkr profile image
Martin Krause β€’

Thank you for your contribution.
I updated the article and the code.

Cheers!

Neon image

Next.js applications: Set up a Neon project in seconds

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Get started β†’

πŸ‘‹ Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay