Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

122
Views
Why do I get these errors with my ternary operator?

This is what I get in the console: Unnecessary use of boolean literals in conditional expression no-unneeded-ternary.

I'm just trying to do a ternary operator that validates the state of a game and only if the game has started and the user.role is equal with player I disable the button. I am using reactjs and with the help of FormField hook I am making a form.

disabled ={(game.state === 'started' && user.role === PLAYER) ? true : false} 
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

The ternary operator is unnecessary:

disabled ={(game.state === 'started' && user.role === PLAYER)} 
about 4 years ago · Juan Pablo Isaza Report

0

No need to use statements in this case, ESlint is letting you know it's redundant since the value produced from this statement is already a boolean and you can create a simpler code.

Just write:

disabled = {(game.state === 'started' && user.role === PLAYER)}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!