I am creating a project using angularjs.I have variable like
$scope.test = null $scope.test = undefined $scope.test = \"\"
I want to check all
You can also do a simple check using function,
$scope.isNullOrEmptyOrUndefined = function (value) { return !value; }