I have a ViewBag that has no value. I am not even defining the ViewBag.SelectVale in my controller so I would expect it to be a null value.
When I do the following in JQuery but does not work:
if ('@ViewBag.SelectVale' == null){
// do something
}
What works instead is something like:
if ('@ViewBag.SelectVale' == ""){
// do something
}