Answers for "get the first few letrer of a string js"

18

javascript get first 10 characters of string

var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars
Posted by: Guest on July-09-2019
0

js substring first 4 numbwe

mystring = "9862 ....... -pack size 1 - SST Unspun Label (Roll) CAT#: 9862";

mystring = mystring.substring(0, 4);

alert(mystring.trim());
Posted by: Guest on December-11-2020

Code answers related to "get the first few letrer of a string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language