var myString = 'Test';
alert(myString.length); // Affiche 4

myString = 'Test 2';
alert(myString.length); // Affiche 6 (l'espace est considéré comme un caractère)