How to exclude specific category from the get_the_category(); array

$category is an object containing member variables, you have to check the specific member var you want to compare.

change:

if($category !== 'Featured')

to:

if($category->name !== 'Featured')