mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-26 00:31:39 +03:00
[javascript/de-de] Fix typos (#5064)
This commit is contained in:
parent
c5ab7e679e
commit
b0c0ab24d2
@ -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!"
|
||||
|
Loading…
Reference in New Issue
Block a user