Currently, I'm extracting information from a JSON string with Angular and experimenting with my application.
Task Status: {{task.completed}} // output is either true or false
I aim to accomplish the following:
If task completed == true, display "completed";
otherwise, display "Not completed"
Is there a way to achieve this in an angular expression?