My data is stored in an array of objects with information about people:
[{"name":"Steve", "hourly_wage":16, "status":"part-time"},
{"name":"Maria", "hourly_wage":25, "status":"full-time"},
{"name":"Jose", "hourly_wage":21, "status":"former"}]
I am looking to visually represent each person's employment status using icons. A full circle for full time, a half circle for part time, and an empty circle for former employees. How can I achieve this using Javascript/Angular? Would using if statements inside ng-hide be the best approach?