var dayNum = 0;
function main() {
var today = getDay();
if(dayNum != today)
{
dayNum = today;
...
With respect to the code above:
In version 7.8, execution does not drop into the if...clause when dayNum == today as you would expect.
In version 7.9 this behavior has changed and execution drops into the if clause even when dayNum == today.
Any ideas?
function main() {
var today = getDay();
if(dayNum != today)
{
dayNum = today;
...
With respect to the code above:
In version 7.8, execution does not drop into the if...clause when dayNum == today as you would expect.
In version 7.9 this behavior has changed and execution drops into the if clause even when dayNum == today.
Any ideas?
Comment