Skip to content

Commit feb6428

Browse files
committed
2 parents 28c4845 + af3cf47 commit feb6428

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

JavaScript/4-introspection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ console.dir({
1717
max: max.name,
1818
});
1919

20-
console.log('Argumants: ');
20+
console.log('Arguments: ');
2121
console.dir({
2222
inc: inc.length,
2323
sum: sum.length,
2424
max: max.length
2525
});
2626

2727
console.log('Anonymous function: ' + function(x) { return x; }.name);
28-
console.log('Anonymous lambda' + (x => x).name);
28+
console.log('Anonymous lambda: ' + (x => x).name);
2929

3030
console.log('toString: ');
3131
console.dir({

JavaScript/b-call-apply.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
'use strict';
22

3-
// Immediately-invoked function expression
4-
53
function f1(a, b) {
64
console.log('f1(' + a + ', ' + b + ')');
75
}

0 commit comments

Comments
 (0)