JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<div ng-app ng-controller="ctrl" >
   <select ng-model="status" ng-options="status for status in statusList"></select>
    <p ng-switch on="(status == 'wrong') || (status == 'incorrect')">
    <span ng-switch-when="true">
        Wrong
    </span>
    <span ng-switch-default>
       Correct
    </span>
</p>
</div>

JavaScript

function ctrl($scope){
    $scope.statusList=["incorrect","wrong","stuff"];
   
}