DEV Community

Arul .A
Arul .A

Posted on

Ternary operator?

  • The ternary operator is a short form of a if-else statement and it helps to write small decisions in one line.
Ex:
   let mark=35;
   let result=(mark>=35)? "pass" :"fail";
Enter fullscreen mode Exit fullscreen mode

Top comments (0)