Answers for "ternario en javascript"

0

if ternario javascript

"The fee is " + (isMember ? "$2.00" : "$10.00")
Posted by: Guest on October-18-2021
0

expresiones ternarias javascript

var condition = false;
var result1 = "First result";
var result2 = "Second result";
var result = condition ? result1 : result2;
//result1 will be assigned to result if condition is true.
//If not, result2 will be assigned
Posted by: Guest on April-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language