Horje
js get initials from name Code Example
js get initials from name
const fullName = nameString.split(' ');
const initials = fullName.shift().charAt(0) + fullName.pop().charAt(0);
return initials.toUpperCase();




Javascript

Related
remove required attribute jquery Code Example remove required attribute jquery Code Example
how to change a css variable with javascript Code Example how to change a css variable with javascript Code Example
error:03000086:digital envelope routines::initialization error Code Example error:03000086:digital envelope routines::initialization error Code Example
mongoose find if starts with Code Example mongoose find if starts with Code Example
json encode js Code Example json encode js Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7