mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-12 01:34:19 +02:00
[javascript/de-de] Fix typos (#5064)
This commit is contained in:
@@ -200,7 +200,7 @@ while (true) {
|
|||||||
// Eine unendliche Schleife!
|
// 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.
|
// immer mindestens einmal ausgeführt werden.
|
||||||
var input;
|
var input;
|
||||||
do {
|
do {
|
||||||
@@ -370,7 +370,7 @@ var anotherFunc = function(s){
|
|||||||
}
|
}
|
||||||
anotherFunc.call(myObj, " And Hello Moon!"); // = "Hello World! And Hello Moon!"
|
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
|
// aber in einem Array
|
||||||
|
|
||||||
anotherFunc.apply(myObj, [" And Hello Sun!"]); // = "Hello World! And Hello Sun!"
|
anotherFunc.apply(myObj, [" And Hello Sun!"]); // = "Hello World! And Hello Sun!"
|
||||||
|
Reference in New Issue
Block a user