what's the difference between "ternary"operator and ifelse statement? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what's the difference between "ternary"operator and ifelse statement?

sample1:Ternary operator var myNum1 = 7; var myNum2 = 10; if (myNum1 < myNum2) { alert("JavaScript is easy to learn."); } sample2:Ifelse statement var myNum1 = 7; var myNum2 = 10; (myNum1 < myNum2 ) ? alert("javascript is easy to learn") : "" ;

14th Jul 2017, 12:26 PM
Suleyman K.
Suleyman K. - avatar
7 Answers
+ 4
Readability - Use If else or Switch case Reliability - Use ternary operators Speed - Use ternary operators Ternary operators are the shortest path to write a program like comparing 3 numbers , and output the greatest number from them , Eg . A program for this case using if else is more than 8 lines but ternary takes it only 1 line in this way :- a>b?b>c?'a':c>b:'c':'a'; Just that much .. Hope you understand .
14th Jul 2017, 3:57 PM
RZK 022
RZK 022 - avatar
+ 3
its better to use if else because readability use ternary if ur defining functions that u wont see it again for example like lets say u wanna have a function that validates sth, u can do sth like lol=s=>/\d/.test(s)?true:false ok so lol() is a function to validate whether a string contains a number and using ternary is fine
14th Jul 2017, 12:32 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 2
ternary is shorter
14th Jul 2017, 12:28 PM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 1
ternary is like a shortcut
14th Jul 2017, 12:50 PM
Mohit Gupta
Mohit Gupta - avatar
+ 1
Saves ur time
14th Jul 2017, 12:50 PM
Mohit Gupta
Mohit Gupta - avatar
0
beside the way you write it down :) is there a bestway practice. when to you use ifelse and when the ternary operator?
14th Jul 2017, 12:28 PM
Suleyman K.
Suleyman K. - avatar
- 2
ternary operator needs to have all it's paths return the same type. if else statement does not have this requirement. but following it as a matter of discipline makes for easier maintenance. you don't want to be spewing expletives at the you from 6 weeks or 6 months ago. however, if you are not returning any value, instead, say doing something like if under 21, add to table x, if 21 or over, add to table o, if else is better. this type of operation that does not return anything and affects the state of the world is called impure operation. this shouldn't have been the case. Kotlin has just if else expressions. No ternary operator, no if else statement.
14th Jul 2017, 1:10 PM
Venkatesh Pitta
Venkatesh Pitta - avatar