I want to wirte a test in my JSP using ternary operator my purpose is when the currentTab equal 'auther' or 'about' I want to use the class auther ,else no css class my question how I can do that using ternary operator if it's possible my code like this :
<body class="${CurrentTab eq 'author || about' ? 'author ' : '' }">
What about:
<body class="${CurrentTab eq 'author' || CurrentTab eq 'about' ? 'auther' : '' }">