Skip to content

Instantly share code, notes, and snippets.

@MrGrootx
Created February 27, 2024 13:10
Show Gist options
  • Save MrGrootx/f33cf33026510ab385eb6f1e1826499e to your computer and use it in GitHub Desktop.
Save MrGrootx/f33cf33026510ab385eb6f1e1826499e to your computer and use it in GitHub Desktop.
js name Overflow
const name =
product.name.length > 21
? product.name.substring(0, 20) + ".."
: product.name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment