I can't seem to get my jsx es6 react if statement to work.. What am I doing wrong?
const otherVariables = doesntMatter;
return (
...
<div>
{if (props.student.length == null && props.teacher.length == null) => (
<p>empty</p>
) : (
<p>not empty</p>
)}
</div>
...
)
How can i check if both arrays are empty?
There is a syntax error, you are testing an lambda expression.
You can do something like
return !!props.student.length && !!props.teacher.length ? <p>not empty</p> : <p>empty</p>;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With