I am trying to write multiple conditions with ternary expressions in JXS.
But not sure if it's correct.
const applyNowUrl = isSmallerThan.medium ? applyNowMobileURL : isEqualOrLargerThan ? applyNowDesktopURL : applyNowTabletURL
The "applyNowUrl" const should have 3 different URLs based on screen size.