Answers for "how to disply only the first 5 chars from a string in javascript"

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
1

get everything after the first character javascript

var val = 'asdasd:111122:123123123';
var response = val.substring(val.indexOf(":"));

alert(response); // ":111122:123123123"
Posted by: Guest on September-16-2020

Code answers related to "how to disply only the first 5 chars from a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language