freeCodeCamp/guide/english/certifications/javascript-algorithms-and-d.../basic-javascript/use-the-conditional-ternary.../index.md

18 lines
285 B
Markdown
Raw Normal View History

2018-10-12 19:37:13 +00:00
---
title: Use the Conditional (Ternary) Operator
---
## Use the Conditional (Ternary) Operator
### Hint 1
Use ternary operator to check for equality.
### Warning Solution Ahead!!!
```javascript
function checkEqual(a, b) {
return (a = b ? true : false );
}
checkEqual(1, 2);
```