Answers for "js string shorten"

4

How to make string shorter javascript

const string = "Name".slice(0, 250).concat('...');
const string2 = "Name".substring(0, 250).concat('...');
Posted by: Guest on February-22-2020
0

shorten string js

let str = "Hello world!";
str.slice(0, 5)   // Returns "Hello"
Posted by: Guest on July-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language