Laut aktuellem TIOPE Index hat Java den Vorsprung auf die am zweitmeisten verbreitete Programmiersprache C wieder stark vergrössert (um fast 6%). Das wundert mich - was hat dazu beigetragen dass Java gerade in den letzten Monaten wieder so populär geworden ist?
Zuerst habe ich gedacht da zählt auch Groovy und Scala mit rein, aber die werden extra gelistet.
Gut zu sehen auch, dass sich Swift verdient von Platz 25 auf 14 vorgeschoben hat. Am meisten hat Groovy dazu gewonnen - von Platz 82 vor auf 17.
This week we noticed that the user administration of our time tracking app timr behaved different on Safari.
I debugged into that issue and found out that a condition in JavaScript behaved different than in other browsers:
if (assignedGroupTable) {
The variable assignedGroupTable was defined some lines before with
var assignedGroupTable;
and the condition should be false on the first call of that function, but in Safari it was true. The debugger showed that the value of assignedGroupTable seemed to be a DIV - there was a DIV in the page with an ID assignedGroupTable, but it had never been assigned to that variable. It seemed like Safari automatically assigned the DIV, with the ID, that was equal to the variable name, to the variable.