Using ternary operator in JavaScript to invoke two functions Using ternary operator in JavaScript to invoke two functions javascript javascript

Using ternary operator in JavaScript to invoke two functions


Yes, that's valid code. It will invoke either function1() or function2(), but not both - depending on the value of type.


It won't invoke two functions. It will invoke one of your two functions.