Ist wahrscheinlich eine triviale Frage, aber ich komme gerade nicht drauf. new Date().getDay() liefert für Sonntag eine 0 vom Typ number. Warum wird 0 im Kontext der Funktion als Null ausgewertet?
Code:
<script> angular.module("dayApp", []) .controller("dayCtrl", function ($scope) { $scope.weekday = new Date().getDay(); }); </script> <p ng-controller="dayCtrl"> weekday = {{weekday || "?"}} </p>
Kommentar