Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution🎀 #1627

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Solution🎀 #1627

wants to merge 5 commits into from

Conversation

polinavafik
Copy link

@polinavafik polinavafik commented Aug 22, 2023

DEMO LINK

we could remove this const partner = sex === 'm' ? 'wife' : 'husband';
and just use the word 'spouse' here

 <p className="Person__partner">
        { isMarried
          ? `${partnerName} is my spouse`
          : 'I am not married'
        }
      </p>

so it would work for all couples 😎👍

Comment on lines 22 to 29
{age > 0
? (
<p className="Person__age">
{`I am ${age}`}
</p>
)
: ''
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you don't need to show something in case if age < 0, use && operator instead of ternary one

Copy link

@dffUqp dffUqp left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GJ✔️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants