props
object with various properties.
By using destructuring, you can directly extract only the necessary properties within the body of the component function, streamlining your code and enhancing readability{ props.firstName || 'Guest' }
props.firstName
is undefined or null, use 'Guest' instead"firstName
, setting it to 'Guest' when no value is assigned.