[javascript/de-de] Fix typos (#5064)

This commit is contained in:
Jan Knobloch 2024-08-30 05:12:59 +02:00 committed by GitHub
parent c5ab7e679e
commit b0c0ab24d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -200,7 +200,7 @@ while (true) {
// Eine unendliche Schleife!
}
// Do-while-Scheifen arbeiten wie while-Schleifen, abgesehen davon, dass sie
// Do-while-Schleifen arbeiten wie while-Schleifen, abgesehen davon, dass sie
// immer mindestens einmal ausgeführt werden.
var input;
do {
@ -370,7 +370,7 @@ var anotherFunc = function(s){
}
anotherFunc.call(myObj, " And Hello Moon!"); // = "Hello World! And Hello Moon!"
// 'apply' funktioniert beiahe identisch, erwartet die übergebenen Argumente
// 'apply' funktioniert beinahe identisch, erwartet die übergebenen Argumente
// aber in einem Array
anotherFunc.apply(myObj, [" And Hello Sun!"]); // = "Hello World! And Hello Sun!"