-
Notifications
You must be signed in to change notification settings - Fork 894
/
daily.md
executable file
·4806 lines (2986 loc) · 99.2 KB
/
daily.md
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 每日一题汇总
### Day1:请写出下面代码执行的的结果
```js
console.log(1);
setTimeout(() => {
console.log(2);
process.nextTick(() => {
console.log(3);
});
new Promise((resolve) => {
console.log(4);
resolve();
}).then(() => {
console.log(5);
});
});
new Promise((resolve) => {
console.log(7);
resolve();
}).then(() => {
console.log(8);
});
process.nextTick(() => {
console.log(6);
});
setTimeout(() => {
console.log(9);
process.nextTick(() => {
console.log(10);
});
new Promise((resolve) => {
console.log(11);
resolve();
}).then(() => {
console.log(12);
});
});
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/37)
<br/>
### Day2:写出执行结果
```js
function side(arr) {
arr[0] = arr[2];
}
function a(a, b, c = 3) {
c = 10;
side(arguments);
return a + b + c;
}
a(1, 1, 1);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/38)
<br/>
### Day3:写出执行结果
```js
var min = Math.min();
max = Math.max();
console.log(min < max);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/39)
<br/>
### Day4:写出执行结果,并解释原因
```js
var a = 1;
(function a() {
a = 2;
console.log(a);
})();
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/40)
<br/>
### Day5:写出执行结果,并解释原因
```js
var a = [0];
if (a) {
console.log(a == true);
} else {
console.log(a);
}
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/41)
<br/>
### Day6:写出执行结果,并解释原因
```js
(function () {
var a = (b = 5);
})();
console.log(b);
console.log(a);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/42)
<br/>
### Day7:写出执行结果,并解释原因
```js
var fullname = "a";
var obj = {
fullname: "b",
prop: {
fullname: "c",
getFullname: function () {
return this.fullname;
},
},
};
console.log(obj.prop.getFullname()); // c
var test = obj.prop.getFullname;
console.log(test()); // a
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/43)
<br/>
### Day8:写出执行结果,并解释原因
```js
var company = {
address: "beijing",
};
var yideng = Object.create(company);
delete yideng.address;
console.log(yideng.address);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/44)
<br/>
### Day9:写出执行结果,并解释原因
```js
var foo = function bar() {
return 12;
};
console.log(typeof bar());
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/45)
<br/>
### Day10:写出执行结果,并解释原因
```js
var x = 1;
if (function f() {}) {
x += typeof f;
}
console.log(x);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/46)
<br/>
### Day11:写出执行结果,并解释原因
```js
function f() {
return f;
}
console.log(new f() instanceof f);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/47)
<br/>
### Day12:写出执行结果,并解释原因
```js
var foo = {
bar: function () {
return this.baz;
},
baz: 1,
};
console.log(typeof (f = foo.bar)());
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/48)
<br/>
### Day13:关于 AMD、CMD 规范区别说法正确的是?(多选)
```js
关于AMD、CMD规范区别说法正确的是?(多选)
A.AMD规范:是 RequireJS在推广过程中对模块定义的规范化产出的
B.CMD规范:是SeaJS 在推广过程中对模块定义的规范化产出的
C.CMD 推崇依赖前置;AMD 推崇依赖就近
D.CMD 是提前执行;AMD 是延迟执行
E.AMD性能好,因为只有用户需要的时候才执行;CMD用户体验好,因为没有延迟,依赖模块提前执行了
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/49)
<br/>
### Day14:关于 SPA 单页页面的理解正确的是?
```js
关于SPA单页页面的理解正确的是?
A.用户体验好、快,但是内容的改变需要重新加载整个页面,会造成不必要的跳转和重复渲染;
B.前后端职责分离,架构清晰,前端进行交互逻辑,后端负责数据处理;
C.初次加载耗时多:为实现单页 Web 应用功能及显示效果,需要在加载页面的时候将 JavaScript、CSS 统一加载,部分页面按需加载;
D.前进后退路由管理需要使用浏览器的前进后退功能
E.SEO 难度较大:由于所有的内容都在一个页面中动态替换显示,所以在 SEO 上其有着天然的弱势。
```
分类:Vue、React
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/50)
<br/>
### Day15:下面对 Vue.js 中 keep-alive 的理解正确的是?(多选)
```js
下面对Vue.js中keep-alive的理解正确的是?(多选)
A.一般结合路由和动态组件一起使用,用于缓存组件;
B.提供 include 和 exclude 属性,两者都支持字符串或正则表达式, include 表示只有名称匹配的组件会被缓存,exclude 表示任何名称匹配的组件都不会被缓存 ,其中 include 的优先级比 exclude 高;
C.对应两个钩子函数 activated 和 deactivated ,当组件被激活时,触发钩子函数 activated,当组件被移除时,触发钩子函数 deactivated。
D.keep-alive 是 Vue 内置的一个组件,可以使被包含的组件保留状态,但是不能避免重新渲染
```
分类:Vue
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/51)
<br/>
### Day16:关于 Vue.js 虚拟 DOM 的优缺点说法正确的是?(多选)
```js
关于Vue.js虚拟DOM的优缺点说法正确的是?(多选)
A.可以保证性能下限,比起粗暴的 DOM 操作性能要好很多,因此框架的虚拟 DOM 至少可以保证在你不需要手动优化的情况下,依然可以提供还不错的性能,即保证性能的下限;
B.无需手动操作DOM,不再需要手动去操作 DOM,只需要写好 View-Model 的代码逻辑,框架会根据虚拟 DOM 和 数据双向绑定,帮我们以可预期的方式更新视图,极大提高我们的开发效率;
C.可以进行极致优化: 虚拟 DOM + 合理的优化,可以使性能达到极致
D.可以跨平台,虚拟 DOM 本质上是 JavaScript 对象,而 DOM 与平台强相关,相比之下虚拟 DOM 可以进行更方便地跨平台操作,例如服务器渲染、weex 开发等等。
```
分类:Vue
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/52)
<br/>
### Day17:下面代码输出什么?
```js
for (let i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 1);
}
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/53)
<br/>
### Day18:写出执行结果,并解释原因
```js
const num = {
a: 10,
add() {
return this.a + 2;
},
reduce: () => this.a -2;
};
console.log(num.add());
console.log(num.reduce());
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/54)
<br/>
### Day19:写出执行结果,并解释原因
```js
const person = { name: "yideng" };
function sayHi(age) {
return `${this.name} is ${age}`;
}
console.log(sayHi.call(person, 21));
console.log(sayHi.bind(person, 21));
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/55)
<br/>
### Day20:写出执行结果,并解释原因
```js
["1", "2", "3"].map(parseInt);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/56)
<br/>
### Day21:写出执行结果,并解释原因
```js
[typeof null, null instanceof Object];
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/57)
<br/>
### Day22:写出执行结果,并解释原因
```js
function f() {}
const a = f.prototype,
b = Object.getPrototypeOf(f);
console.log(a === b);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/58)
<br/>
### Day23:写出执行结果,并解释原因
```js
function showCase(value) {
switch (value) {
case "A":
console.log("Case A");
break;
case "B":
console.log("Case B");
break;
case undefined:
console.log("undefined");
break;
default:
console.log("Do not know!");
}
}
showCase(new String("A"));
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/59)
<br/>
### Day24:选择正确的答案
```js
console.log([2,1,0].reduce(Math.pow));
console.log([].reduce(Math.pow));
/ *
A. 2 报错
B. 2 NaN
C. 1 报错
D. 1 NaN
*/
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/60)
<br/>
### Day25:请问变量 a 会被 GC 吗
```js
function test() {
var a = 1;
return function () {
eval("");
};
}
test();
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/61)
<br/>
### Day26:写出执行结果,并解释原因
```js
const value = "Value is" + !!Number(["0"]) ? "yideng" : "undefined";
console.log(value);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/62)
<br/>
### Day27:写出执行结果,并解释原因
```js
var arr = [0, 1];
arr[5] = 5;
newArr = arr.filter(function (x) {
return x === undefined;
});
console.log(newArr.length);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/63)
<br/>
### Day28:写出执行结果,并解释原因(以最新谷歌浏览器为准)
```js
async function async1() {
console.log("async1 start");
await async2();
console.log("async1 end");
}
async function async2() {
console.log("async2");
}
console.log("script start");
setTimeout(function () {
console.log("setTimeout");
}, 0);
async1();
new Promise(function (resolve) {
console.log("promise1");
resolve();
}).then(function () {
console.log("promise2");
});
console.log("script end");
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/64)
<br/>
### Day29:下面代码中 a 在什么情况下会打印 1
```js
var a = ?;
if(a == 1 && a== 2 && a== 3){
console.log(1);
}
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/65)
<br/>
### Day30:写出执行结果,并解释原因
```js
const obj = {
2: 3,
3: 4,
length: 2,
splice: Array.prototype.splice,
push: Array.prototype.push,
};
obj.push(1);
obj.push(2);
console.log(obj);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/66)
<br/>
### Day31:写出执行结果,并解释原因
```js
let a = { n: 1 };
let b = a;
a.x = a = { n: 2 };
console.log(a.x);
console.log(b.x);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/67)
<br/>
### Day32:写出执行结果,并解释原因
```js
var a1 = {},
b1 = "123",
c1 = 123;
a1[b1] = "b";
a1[c1] = "c";
console.log(a1[b1]);
var a2 = {},
b2 = Symbol("123"),
c2 = Symbol("123");
a2[b2] = "b";
a2[c2] = "c";
console.log(a2[b2]);
var a3 = {},
b3 = { key: "123" },
c3 = { key: "456" };
a3[b3] = "b";
a3[c3] = "c";
console.log(a3[b3]);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/68)
<br/>
### Day33:写出执行结果,并解释原因
```js
function Foo() {
Foo.a = function () {
console.log(1);
};
this.a = function () {
console.log(2);
};
}
Foo.prototype.a = function () {
console.log(3);
};
Foo.a = function () {
console.log(4);
};
Foo.a();
let obj = new Foo();
obj.a();
Foo.a();
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/69)
<br/>
### Day34:写出执行结果,并解释原因
```js
function user(obj) {
obj.name = "京程一灯";
obj = new Object();
obj.name = "精英班";
}
let person = new Object();
user(person);
console.log(person.name);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/70)
<br/>
### Day35:写出执行结果,并解释原因
```js
let x, y;
try {
throw new Error();
} catch (x) {
x = 1;
y = 2;
console.log(x);
}
console.log(x);
console.log(y);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/71)
<br/>
### Day36:写出执行结果,并解释原因
```js
function fn() {
getValue = function () {
console.log(1);
};
return this;
}
fn.getValue = function () {
console.log(2);
};
fn.prototype.getValue = function () {
console.log(3);
};
var getValue = function () {
console.log(4);
};
function getValue() {
console.log(5);
}
//请写出以下输出结果:
getValue();
fn().getValue();
getValue();
new fn.getValue();
new fn().getValue();
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/72)
<br/>
### Day37:写出执行结果,并解释原因
```js
let length = 10;
function fn() {
console.log(this.length);
}
var obj = {
length: 5,
method: function (fn) {
fn();
arguments[0]();
},
};
obj.method(fn, 1);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/73)
<br/>
### Day38:写出执行结果,并解释原因
```js
var a = 10;
var foo = {
a: 20,
bar: function () {
var a = 30;
return this.a;
},
};
console.log(foo.bar());
console.log(foo.bar());
console.log((foo.bar = foo.bar)());
console.log((foo.bar, foo.bar)());
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/74)
<br/>
### Day39:写出执行结果,并解释原因
```js
function getName() {
for (let i = 0; i < 5; i++) {
setTimeout(function () {
console.log(i);
}, i * 1000);
}
return;
{
name: "京程一灯";
}
}
console.log(getName());
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/75)
<br/>
### Day40:写出执行结果,并解释原因
```js
const num = parseInt("2*4", 10);
console.log(num);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/76)
<br/>
### Day41:选择正确答案,并解释为什么
```js
const company = { name: "京程一灯" };
Object.defineProperty(company, "address", { value: "北京" });
console.log(company);
console.log(Object.keys(company));
/*
A. {name:"京程一灯",address:"北京"},["name","age"]
B. {name:"京程一灯",address:"北京"},["name"]
C. {name:"京程一灯"},["name","age"]
D. {name:"京程一灯"},["name","age"]
*/
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/77)
<br/>
### Day42:写出执行结果,并解释原因
```js
let num = 10;
const increaseNumber = () => num++;
const increasePassedNumber = (number) => number++;
const num1 = increaseNumber();
const num2 = increasePassedNumber(num1);
console.log(num1);
console.log(num2);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/78)
<br/>
### Day43:写出执行结果,并解释原因
```js
const value = { number: 10 };
const multiply = (x = { ...value }) => {
console.log((x.number *= 2));
};
multiply();
multiply();
multiply(value);
multiply(value);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/79)
<br/>
### Day44:写出执行结果,并解释原因
```js
[1, 2, 3, 4].reduce((x, y) => console.log(x, y));
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/80)
<br/>
### Day45:写出执行结果,并解释原因
```js
// index.js
console.log("running index.js");
import { sum } from "./sum.js";
console.log(sum(1, 2));
// sum.js
console.log("running sum.js");
export const sum = (a, b) => a + b;
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/81)
<br/>
### Day46:写出执行结果,并解释原因
```js
function addToList(item, list) {
return list.push(item);
}
const result = addToList("company", ["yideng"]);
console.log(result);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/95)
<br/>
### Day47:写出执行结果,并解释原因
```js
var a = 0;
if (true) {
a = 10;
console.log(a, window.a);
function a() {}
console.log(a, window.a);
a = 20;
console.log(a, window.a);
}
console.log(a);
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/96)
<br/>
### Day48:能否以某种方式为下面的语句使用展开运算而不导致类型错误
```js
var obj = { x: 1, y: 2, z: 3 };
[...obj]; // TypeError
// 能否以某种方式为上面的语句使用展开运算而不导致类型错误
// 如果可以,写出解决方式
```
分类:JavaScript
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/97)
<br/>
### Day49:请你完成一个 safeGet 函数,可以安全的获取无限多层次的数据
```js
// 请你完成一个safeGet函数,可以安全的获取无限多层次的数据,一旦数据不存在不会报错,会返回 undefined,例如
var data = { a: { b: { c: "yideng" } } };
safeGet(data, "a.b.c"); // => yideng
safeGet(data, "a.b.c.d"); // => undefined
safeGet(data, "a.b.c.d.e.f.g"); // => undefined
```
分类:JavaScript、编程题
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/98)
<br/>
### Day50:写一个 isPrime()函数
```js
写一个isPrime()函数,当其为质数时返回true,否则返回false。
提示:质数是指在大于1的自然数中,除了1和它本身以外不再有其他因数的自然数。
```
分类:算法
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/99)
<br/>
### Day52:请实现一个 flattenDeep 函数,把嵌套的数组扁平化~~
```js
flattenDeep([1, [2, [3, [4]], 5]]); //[1, 2, 3, 4, 5]
// 请实现一个flattenDeep函数,把嵌套的数组扁平化
```
分类:JavaScript、编程题
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/100)
<br/>
### Day53:请实现一个 uniq 函数,实现数组去重~~
```js
uniq([1, 2, 3, 5, 3, 2]); //[1, 2, 3, 5]
// 请实现一个 uniq 函数,实现数组去重
```
分类:算法
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/101)
<br/>
### Day54:new 操作符都做了什么,并手动实现一下
分类:JavaScript、编程题
[答案&解析](https://github.com/lgwebdream/FE-Interview/issues/102)
<br/>
### Day55:实现 (5).add(3).minus(2) 功能
```js