As I create a JSON object that contains Arabic content shown below
$scope.arabicContent = ["ردهة","قاعة الاجتماعات","مبرمجين الجوال","المدراء","المحاسبة","المحاسبة","المبرمجين","مطبخ ","الطابق الأول"]
Unfortunately, ng-repeat is unable to properly parse or iterate through this object in the HTML code.
<select name="meetingLocation" ng-model="data.meetingLocation"> <option ng-repeat="location in arabicContent" value="{{ location }}">{{ location }}</option> </select>