Answers for "get first letter of 2 name javascript"

5

javascript get first 2 char

String.substring(0, 2);
//Return the first two characters of the string
//First parameter is the starting index, 0 corresponding to the first character
//Second parameter is the number of character to return
Posted by: Guest on January-02-2021
0

get first two letter of an array javascript

var str = '012123';
var strFirstThree = str.substring(0,3);

console.log(str); //shows '012123'
console.log(strFirstThree); // shows '012'
Posted by: Guest on February-19-2021

Code answers related to "get first letter of 2 name javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language