Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

how to convert names to initials

const initials = item
    .FirstName
    .charAt(0)
    .toUpperCase() +
  
    item
    .LastName
    .charAt(0)
    .toUpperCase();
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript compare dates old new value 
Javascript :: codeigniter 4 tooltip dynamic 
Javascript :: how to create event listener in javascript 
Javascript :: javascript jquery json quiz2 
Javascript :: axios check if call is already running 
Javascript :: recognize movements javascript 
Javascript :: serve public folder express without file extension 
Javascript :: how to rmeove white space in a string with jquery 
Javascript :: triangle sum of odds numbers formula 
Javascript :: gsheet business days 
Javascript :: error code ELIFECYCLE REACTJs 
Javascript :: gsheet get cell background color 
Javascript :: add active class to button onclick react 
Javascript :: node js euro sign 
Javascript :: Syntax highlighting for the Web 
Javascript :: ubicar escrol en el final jquey 
Javascript :: save browser password 
Javascript :: javascript es6 filter sum distinct 
Javascript :: node load testing-01 
Javascript :: open each image on its own modal page 
Javascript :: local storage textarea 
Javascript :: Array-multiple test case 
Javascript :: direction of scroll on page 
Javascript :: how to get the index of an object inside of a map js 
Javascript :: sharepoint javascript get last added item 
Javascript :: javascript promise multi function error 
Javascript :: Javascript Reverse Words O(n) time O(1) space 
Javascript :: exitBeforeEnter not working 
Javascript :: nestjs multer file upload delay 
Javascript :: curl --post with api 
ADD CONTENT
Topic
Content
Source link
Name
4+7 =