0
<p>{{isExisted}}</p>

I want to display "Active" or "Inactive" but the isExisted returned true or false. How to do if else conditional and change it to new value?

2 Answers 2

2

Conditional operator can be used.

<p>{{isExisted ? "Active" : "InActive"}}</p>
Sign up to request clarification or add additional context in comments.

Comments

0

another version is that it does in controller through function:

$scope.getStatusText = function(){
  return isExisted ? "Active" : "InActive";
}

then

<p>{{getStatusText()}}</p>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.