Complete Guide on How to use Ternary Operator in Javascript

This article is all you need to become a pro in making decisions with Ternary Operators in Javascript.

Harsh Prateek
3 min readJul 29, 2022
Image of some random code terminal
Photo by Shahadat Rahman on Unsplash

Syntax:

As the name suggests, the ternary operator takes three arguments, one of which is a boolean or a condition that resolves in a boolean expression. The other two are the expressions that would execute once the boolean is true or false.

Here is the syntax of the ternary operator.

condition?statement1:statement2

The condition before the question mark is our boolean expression which, when true would execute statement1 as output. Otherwise, it would run stataement2 if false. Both statements are separated by a colon sign.

As the ternary operator is similar to the if-else statement, here is the equivalent if-else block for evaluating the condition.

if(condition){
statement1
}
else{
statement
}

Working:

The ternary operator works the same way as the if-else statement. When the condition is considered correct, statement1 executes otherwise statement2 executes. Here is an example that uses the ternary operator.

function falsy(x){
let judge = x?"it is not falsy":"it is falsy";
console.log(judge);
}
falsy(0); //output:- it is falsy

Here, I made a little function that checks the falsy values and gives output on whether the value is falsy or not. If the value passed is a falsy value, the output would be stored in the judge variable as “it is falsy” otherwise it would output as “it is not falsy”.

This small example is enough to show how the ternary operator executes a conditional operation and can be used in a function.

By the way, these are all the falsy values present in JavaScript:
0, null, undefined, NaN, false, “”(empty strings)

Real Life Usages:

Here is a little example of a function that I made for one of my personal React projects that use Ternary Operator.

I know it doesn’t look too clean😅 but this is an example of using ternary operators in React project. Here, I made a ternary operator that checks whether a title is available or not. First, it checks whether the title is present or not, if it is present, then it checks the length of the title. If the title is over 40 characters long, then it is sliced to 40 characters.

If there is no title present, then a string of “No title is available” is sent as output.

This is also an example of chaining the ternary operators as we do in if…else…if ladder.

This is what it looks in if…else…if

if(e.title){
if(e.title.length>40){
return e.title.slice(0,40);
}
else{
return e.title;
}
}
else{
return "No title is available"
}

Unfortunately, the if…else…if block is too big to be used as an inline Javascript in JSX, and it is not worth it to create a new function just for this work. Thus, ternary operators are our best bet in making decisions inline in JSX.

Conclusion:

This was everything there is to know about Ternary operators. This article was a part of the series in which I post about topics that are important to know before learning ReactJS. I hope you enjoyed the article and found it helpful.

If you too are interested in learning ReactJS then here are all the concepts important. I recommend doing these, before learning React.

Subscribe to my newsletter and do follow me on Medium and Twitter where I always post content related to programming and web development.

Have a great day ahead😉.

--

--

Harsh Prateek

Hi, I am Harsh and I write about coding and learning techniques. I am a student myself and would love to tell everyone my secrets for coding and learning.