We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28c4845 + af3cf47 commit feb6428Copy full SHA for feb6428
JavaScript/4-introspection.js
@@ -17,15 +17,15 @@ console.dir({
17
max: max.name,
18
});
19
20
-console.log('Argumants: ');
+console.log('Arguments: ');
21
console.dir({
22
inc: inc.length,
23
sum: sum.length,
24
max: max.length
25
26
27
console.log('Anonymous function: ' + function(x) { return x; }.name);
28
-console.log('Anonymous lambda' + (x => x).name);
+console.log('Anonymous lambda: ' + (x => x).name);
29
30
console.log('toString: ');
31
JavaScript/b-call-apply.js
@@ -1,7 +1,5 @@
1
'use strict';
2
3
-// Immediately-invoked function expression
4
-
5
function f1(a, b) {
6
console.log('f1(' + a + ', ' + b + ')');
7
}
0 commit comments