-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest3.js
55 lines (49 loc) · 1.18 KB
/
test3.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
function foo(wrapper, x) {
wrapper.a =42;
x = x + 1;
console.log( "x = ", x)
}
var obj = {
a: 2
};
var y = 0;
foo( obj, y );
console.log( obj.a, y );
console.log( void obj.a );
var func = () => console.log("Simply Function !");
func();
var identity = (v) => v;
console.log(identity([1,2,3]));
var tellType = (arg) => {
if ( typeof arg === "function" ) {
console.log( "The passed data is function !" );
arg()
}
else
console.log( "The passed data is: " + arg )
}
let data =1;
tellType( data );
let fn = () => {};
tellType( fn );
tellType( 'Hello World! ' );
tellType( true );
tellType( NaN );
tellType( undefined );
tellType( 34839.99 );
tellType( data === 1 );
// Function => String
let crazy = () => { return String };
console.log( crazy()( "HOC" ) );
const forEachObject = (obj, fn) => {
for ( var property in obj) {
if ( obj.hasOwnProperty(property) ) {
fn( property, obj[ property ])
}
}
}
let object = { a:1, b:2 };
forEachObject( object, ( k, v ) => console.log( k + ":" + v ) );
/* 其实等价于:
let fn2 = ( k, v ) => console.log( k + ":" + v );
forEachObject( object, fn2 ); */