What is the output of this ternary operation?
const value = 10; console.log(value > 5 ? "Yes" : "No");
Yes
No
Error
Undefined
This question is part of this quiz :