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 use angular's function called angular.isUndefined(value) returns boolean.
angular.isUndefined(value)
You may read more about angular's functions here: AngularJS Functions (isUndefined)