mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-17 12:09:00 -05:00
286 B
286 B
title
| title |
|---|
| Use the Conditional (Ternary) Operator |
Use the Conditional (Ternary) Operator
Hint 1
Use ternary operator to check for equality.
Warning Solution Ahead!!!
function checkEqual(a, b) {
return (a == b ? true : false );
}
checkEqual(1, 2);