var res={
optionMsg:""
}
""+ res.data || res.optionMsg
//"undefined"
res.data || res.optionMsg
//
res.data || res.optionMsg+""
//
Why do I return undefined before the text?
text is returned after the correct
what is the case?