Moin.
Macht es einen Unterschied (und wenn ja welchen) ob ich globale Variablen so:
var a = '';
function b() { a = 'hallo'; }
function c() { alert(a); }
oder so:
function b() { a = 'hallo'; }
function c() { alert(a); }
erstelle?
Paul