JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

JavaScript

const user = {
	firstName: 'one',
  lastName: undefined,
  email: '[email protected]',
};

const id = user.firstName + ' ' + (user.lastName || 'placeholder');
alert(id);