I am reading data from a JSON string using angular and playing around with my app at the moment.
Task Status : {{task.completed}} // displays true or false
I want to achieve something like this:
if(task.completed == true) print "completed";
else "print Not completed"
How can this be done in an angular expression?