-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1913 lines (1819 loc) · 73.6 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>ES2015</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>ƒ
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>ES2015
<span style="font-size: 60px;">и не только</span>
</h1>
<h4>Узнаем и готовимся применять самое полезное</h4>
<p style="font-size: 0.6em;">Для навигации используйте пробел или стрелки клавиатуры.</p>
<p style="font-size: 0.6em;">Esc для обзора слайдов.</p>
<hr>
<p style="font-size: 0.6em;">За авторством <a href="http://advego.ru/" target="_blank" rel="noopener">Adevgo Ltd.</a> Исходный код доступен на <a href="https://github.com/AdvegoDev/es2015-showtime" target="_blank" rel="noopener">GitHub</a>.</p>
</section>
<section>
<h4>Что нам предстоит обсудить:</h4>
<ul style="font-size: 0.6em;">
<li>
<a href="#/4">let</a>, <a href="#/5">const</a> и блочная область видимости
</li>
<li>
<a href="#/7">Стрелочные функции</a>
</li>
<li>
<a href="#/8">Параметры по умолчанию</a>
</li>
<li>
<a href="#/9">Spread/Rest оператор</a>
</li>
<li>
<a href="#/10">Расширение возможностей литералов объекта</a>
</li>
<li>
<a href="#/11">Восьмеричный и двоичный литералы</a>
</li>
<li>
<a href="#/12">Деструктуризация массивов и объектов</a>
</li>
</ul>
</section>
<section>
<ul style="font-size: 0.6em;">
<li>
<a href="#/13">Ключевое слово super для объектов</a>
</li>
<li>
<a href="#/14">Строковые шаблоны и разделители</a>
</li>
<li>
<a href="#/15">Сравнение for...of и for...in</a>
</li>
<li>
<a href="#/16">Map</a> и <a href="#/17">WeakMap</a>
</li>
<li>
<a href="#/18">Set</a> и <a href="#/19">WeakSet</a>
</li>
<li>
<a href="#/20">Классы в ES6</a>
</li>
<li>
<a href="#/23">Тип данных Symbol</a>
</li>
<li>
<a href="#/24">Итераторы</a>
</li>
<li>
<a href="#/25">Генераторы</a>
</li>
<li>
<a href="#/26">Промисы</a>
</li>
<li>
<a href="#/27">Fetch</a>
</li>
<li>
<a href="#/28">Дополнительно</a>
</li>
</ul>
</section>
<section>
<p>В июне 2015-го года был принят новый стандарт EcmaScript:
ES2015, также известный как ES6.
</p>
<ul>
<li>
<a
href="http://www.ecma-international.org/ecma-262/6.0/"
target="_blank"
rel="noopener">
Официальная спецификация
</a>
</li>
<li>
<a
href="http://kangax.github.io/compat-table/es6/"
target="_blank"
rel="noopener">
Совместимость
</a>
</li>
<li>
<a
href="http://babeljs.io/"
target="_blank"
rel="noopener">
Компиляция - Babel.js
</a>
</li>
</ul>
</section>
<section>
<h4>let</h4>
<p style="font-size: 0.6em;">Ключевое слово let позволяет объявлять переменные с ограниченной областью видимости - только для блока {...}, в котором происходит объявление. Это называется блочной областью видимости. Вместо ключевого слова var, которое обеспечивает область видимости внутри функции, стандарт ES6 рекомендует использовать let.</p>
<pre><code class="hljs" data-trim contenteditable>
var a = 2;
{
let a = 3;
console.log(a); // 3
let a = 5;
// TypeError: Identifier 'a' has already been declared
}
console.log(a); // 2
</code></pre>
<a
href="http://jsbin.com/gubigib/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<h4>const</h4>
<p style="font-size: 0.6em;">Другой формой объявления переменной с блочной областью видимости является ключевое слово const. Оно предназначено для объявления переменных (констант), значения которых доступны только для чтения. Это означает не то, что значение константы неизменно, а то, что идентификатор переменной не может быть переприсвоен.</p>
<pre><code class="hljs" data-trim contenteditable>
{
const B = 5;
B = 10; // TypeError: Assignment to constant variable
const ARR = [5, 6];
ARR.push(7);
console.log(ARR); // [5,6,7]
ARR = 10; // TypeError: Assignment to constant variable
ARR[0] = 3; // value is mutable
console.log(ARR); // [3,6,7]
}
</code></pre>
<a
href="http://jsbin.com/rezohox/3/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<h4>Обращаем внимание:</h4>
<ul style="font-size: 0.6em;">
<li>
Когда дело касается поднятия переменных (hoisting) let и const, их поведение отличается от традиционного поведения var и function. И let и const не существуют до своего объявления.
</li>
<li>
Областью видимости let и const является ближайший блок.
</li>
<li>
При использовании const рекомендуется использовать ПРОПИСНЫЕ_БУКВЫ.
</li>
<li>
В const одновременно с объявлением переменной должно быть присвоено значение.
</li>
<li>
let (как и const) объявленные в цикле for (и for (in)) так же попадает в блочную область видимости этого цикла:
</li>
</ul>
<pre><code class="hljs" data-trim contenteditable>
for (let i=0;i<10;i++) {/* ... */};
console.log(i); // → RefferenceError: i is not defined
</code></pre>
<a
href="http://jsbin.com/xofaze/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<section>
<h4>Стрелочные функции <br>(Arrow functions)</h4>
<p style="font-size: 0.6em;">
Стрелочные функции представляют собой сокращённую запись функций в ES6. Стрелочная функция состоит из списка параметров ( ... ), за которым следует знак => и тело функции.
</p>
<pre><code class="hljs" data-trim contenteditable>
// Classical Function Expression
let addition = function(a, b) {
return a + b;
};
// Implementation with arrow function
let addition = (a, b) => a + b;
</code></pre>
<a
href="http://jsbin.com/bomidip/3/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<p style="font-size: 0.6em;">
Заметим, что в примере выше, тело функции представляет собой краткую запись, в которой не требуется явного указания на то, что мы хотим вернуть результат. Возможно использование блока из фигурных скобок.
</p>
<pre><code class="hljs" data-trim contenteditable>
let arr = ['apple', 'banana', 'orange'];
let breakfast = arr.map(fruit => {
return fruit + 's';
});
console.log(breakfast); // ['apples', 'bananas', 'oranges']
</code></pre>
<a
href="http://jsbin.com/fepomiw/1/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<p style="font-size: 0.6em;">
Стрелочные функции не просто делают код короче. Они тесно связаны с ключевым словом this и привязкой контекста.
Поведение стрелочных функций с ключевым словом this отличается от поведения обычных функций с this. Каждая функция в JavaScript определяет свой собственный контекст this, но внутри стрелочных функций значение this то же самое, что и снаружи (стрелочные функции не имеют своего this).
</p>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function Person() {
// The Person() constructor defines `this`
// as an instance of itself.
this.age = 0;
setInterval(function growUp() {
// In non-strict mode, the growUp() function
// defines `this` as the global object, which
// is different from the `this`
// defined by the Person() constructor.
this.age++;
}, 1000);
}
var p = new Person();
</code></pre>
<pre><code class="hljs" data-trim contenteditable>
setInterval(() => {
setTimeout(() => {
console.log(p.age);
}, 1000);
}, 1000);
// 0
</code></pre>
<a
href="http://jsbin.com/jimecad/9/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<p style="font-size: 0.6em;">В ECMAScript 3/5 это поведение стало возможным изменить, присвоив значение this другой переменной.</p>
<pre><code class="hljs" data-trim contenteditable>
function Person() {
var self = this;
self.age = 0;
setInterval(function growUp() {
// The callback refers to the `self` variable of which
// the value is the expected object.
self.age++;
}, 1000);
}
</code></pre>
<pre><code class="hljs" data-trim contenteditable>
setInterval(() => {
setTimeout(() => {
console.log(p.age);
}, 1000);
}, 1000);
// 2 3 4...
</code></pre>
<a
href="http://jsbin.com/rezuqud/8/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<p style="font-size: 0.6em;">Как сказано выше, внутри стрелочных функций значение this то же самое, что и снаружи, поэтому следующий код работает так, как от него и ожидается:</p>
<pre><code class="hljs" data-trim contenteditable>
function Person() {
this.age = 0;
setInterval(() => {
setTimeout(() => {
this.age++;
// `this` properly refers to the person object
}, 1000);
}, 1000);
}
var p = new Person();
</code></pre>
<pre><code class="hljs" data-trim contenteditable>
setInterval(() => {
setTimeout(() => {
console.log(p.age);
}, 1000);
}, 1000);
// 1 2 3 4...
</code></pre>
<a
href="http://jsbin.com/lamora/4/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const result = [1, 2, 3].map(num => num * 2);
console.log(result);
// [2, 4, 6]
</code></pre>
<a
href="http://jsbin.com/qaqiruw/4/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const result = [1, 2, 3, 4].map((num, i) => num * 2 + i);
console.log(result);
// [2, 5, 8, 11]
</code></pre>
<a
href="http://jsbin.com/gazalir/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<h4>NB</h4>
<ul style="font-size: 0.6em;">
<li>Стрелочные функции не могут быть использованы как конструкторы.</li>
<li>С фигурными скобками стрелочные функции требуют явного return.</li>
<li><code>this</code> не может быть изменен с помощью <code>.call</code> или <code>.apply</code> и т.п.</li>
<li>В качестве <code>arguments</code> используются аргументы внешней "обычной" функции.</li>
</ul>
</section>
</section>
<section>
<h4>Параметры по умолчанию <br>(Default Function Parameters)</h4>
<p style="font-size: 0.6em;">
ES6 позволяет установить параметры по умолчанию при объявлении функции
</p>
<pre><code class="hljs" data-trim contenteditable>
let getFinPrice= (price, tax = 0.7) => price + price * tax;
getFinPrice(500); // 850
</code></pre>
<a
href="http://jsbin.com/fivazeh/3/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<section>
<h4>Spread / Rest оператор <br>(Spread / Rest Operator)</h4>
<p style="font-size: 0.6em;">
<code>...</code> оператор называют как spread или rest, в зависимости от того, как и где он используется. При использовании в любом итерируемом объекте (iterable), данный оператор "разбивает" ("spread") его на индивидуальные элементы:
</p>
<pre><code class="hljs" data-trim contenteditable>
function foo(x, y, z) {
console.log(x, y, z);
}
let arr = [1, 2, 3];
foo(...arr); // 1 2 3
</code></pre>
<a
href="http://jsbin.com/sugeno/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<p style="font-size: 0.6em;">
Другим распространённым использованием оператора <code>...</code> является объединение набора значений в один массив. В данном случае оператор работает как "rest" ("соединяет с остальными элементами")
</p>
<pre><code class="hljs" data-trim contenteditable>
function foo(...args) {
console.log(args);
}
foo(1, 2, 3, 4, 5); // [1, 2, 3, 4, 5]
</code></pre>
<a
href="http://jsbin.com/kaxika/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function sum () {
const nums = Array.prototype.slice.call(arguments);
const multiplier = nums.shift();
const base = nums.shift();
const sum = nums.reduce((accum, num) => {
return accum + num;
}, base);
return multiplier * sum;
}
const total = sum(2, 6, 10, 8, 9);
console.log(total);
// 66
</code></pre>
<a
href="http://jsbin.com/rotakak/11/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function sum (multiplier, base, ...nums) {
var sum = nums.reduce((accum, num) => accum + num, base);
return multiplier * sum;
}
const total = sum(2, 6, 10, 8, 9);
console.log(total);
// 66
</code></pre>
<a
href="http://jsbin.com/lubahuv/6/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
</section>
<section>
<section>
<h4>Расширение возможностей литералов объекта <br>(Object Literal Extensions)</h4>
<p style="font-size: 0.6em;">
ES6 позволяет объявить литералы объекта с помощью короткого синтаксиса для инициализации свойств из переменных и определения функциональных методов. Также, стандарт обеспечивает возможность вычисления свойств непосредственно в литерале объекта.
</p>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function getCar(make, model, value) {
return {
// with property value shorthand syntax, you can omit
// the property value if key matches variable name
make, // same as make: make
model, // same as model: model
value, // same as value: value
// computed values now work with object literals
['make' + make]: true,
// Method definition shorthand syntax omits
// `function` keyword & colon
depreciate() { this.value -= 2500; }
};
}
</code></pre>
<a
href="http://jsbin.com/halapu/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
let car = getCar('Kia', 'Sorento', 40000);
console.log(car);
// {
// make: 'Kia',
// model:'Sorento',
// value: 40000,
// makeKia: true,
// depreciate: function()
// }
</code></pre>
<a
href="http://jsbin.com/halapu/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
</section>
<section>
<h4>Восьмеричный и двоичный литералы <br>(Octal and Binary Literals)</h4>
<p style="font-size: 0.6em;">
В ES6 появилась новая поддержка для восьмеричных и двоичных литералов. Добавление к началу числа 0o или 0O преобразует его в восьмеричную систему счисления (аналогично, 0b или 0B преобразует в двоичную систему счисления).
</p>
<pre><code class="hljs" data-trim contenteditable>
let oValue = 0o10;
console.log(oValue); // 8
let bValue = 0b10;
console.log(bValue); // 2
</code></pre>
<a
href="http://jsbin.com/mejuzag/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<section>
<h4>Деструктуризация массивов и объектов <br>(Array and Object Destructuring)</h4>
<p style="font-size: 0.6em;">
Деструктуризация помогает избежать использования вспомогательных переменных при взаимодействии с объектами и массивами.
</p>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function foo() {
return [1, 2, 3];
}
let arr = foo(); // [1,2,3]
let [a, b, c] = foo();
console.log(a, b, c); // 1 2 3
</code></pre>
<a
href="http://jsbin.com/bidepim/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function bar() {
return {
x: 4,
y: 5,
z: 6
};
}
let { x: a, y: b, z: c } = bar();
console.log(a, b, c); // 4 5 6
</code></pre>
<a
href="http://jsbin.com/cenuju/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const bar = {
baz: "dat"
};
const { baz: foo } = bar;
console.log(foo);
// "dat"
</code></pre>
<a
href="http://jsbin.com/geyexe/5/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const baz = {};
const { foo='bar' } = baz;
console.log(foo);
// "bar"
</code></pre>
<a
href="http://jsbin.com/waxazaz/7/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const {foo, bar: baz} = {foo: 0, bar: 1};
console.log(foo, baz);
// 0
// 1
</code></pre>
<a
href="http://jsbin.com/caxine/3/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const {foo: {bar}} = { foo: { bar: 'baz' } };
console.log(bar);
// "baz"
</code></pre>
<a
href="http://jsbin.com/jalevo/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const {foo: {bar: deep}} = { foo: { bar: 'baz' } }
console.log(deep);
// "baz"
</code></pre>
<a
href="http://jsbin.com/qeyoxu/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
var {foo} = {}
console.log(foo);
// undefined
</code></pre>
<a
href="http://jsbin.com/vukerin/4/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const {foo: {bar}} = {}
console.log(foo);
// TypeError: Cannot read property 'bar' of undefined
</code></pre>
<a
href="http://jsbin.com/xezegow/4/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const [a, , b] = [0, 1, 2]
console.log(a, b);
// 0
// 2
</code></pre>
<a
href="http://jsbin.com/lovalif/4/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
let a = 13;
let b = 42;
[a, b] = [b, a]
console.log(a, b);
// 42
// 13
</code></pre>
<a
href="http://jsbin.com/kiromo/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function foo ({ a=1, b=2 } = {}) {
console.log(a, b);
}
const props = { a: 23 };
foo(props);
// 23
// 2
foo();
// 1
// 2
</code></pre>
<a
href="http://jsbin.com/wuxuqo/12/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
function getUrlParts (url) {
var re =
/^(https?):\/\/(example\.com)(\/articles\/([a-z0-9-]+))$/
return re.exec(url)
}
const url = 'http://example.com/articles/some-article'
const parts = getUrlParts(url);
const [protocol,host,pathname,slug] = parts;
console.log(protocol, host, pathname, slug);
// 'http'
// 'example.com'
// '/articles/some-article'
// 'some-article'
</code></pre>
<a
href="http://jsbin.com/gisifud/9/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const savedFile = {
extension: 'jpg',
name: 'repost',
size: 14040
};
function fileSummary({name, extension, size}) {
return `The ${name}.${extension} is of size ${size} B`;
}
const result = fileSummary(savedFile);
console.log(result);
// "The repost.jpg is of size 14040 B"
</code></pre>
<a
href="http://jsbin.com/qemamep/4/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const companies = [
'Google',
'Facebook',
'Yandex'
];
const [firstCompany, ...otherCompanies] = companies;
console.log(firstCompany, otherCompanies);
// "Google"
// ["Facebook", "Yandex"]
</code></pre>
<a
href="http://jsbin.com/qoretu/9/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const companies = [
{ name: 'Google', location: 'Mountain View' },
{ name: 'Facebook', location: 'Menlo Park' },
{ name: 'Uber', location: 'San Francisco' }
];
const [{location: google}] = companies;
console.log(google);
// "Mountain View"
</code></pre>
<a
href="http://jsbin.com/weqepex/14/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
const points = [
[4, 5],
[10, 1],
[0, 40]
];
const result = points.map(([x, y]) => {
return { x, y }
});
console.log(result);
// [{x: 4, y: 5}, {x: 10, y: 1}, {x: 0, y:40}]
</code></pre>
<a
href="http://jsbin.com/zeyifu/15/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
import React, { Component, PropTypes } from 'react';
</code></pre>
<pre><code class="hljs" data-trim contenteditable>
import { includes } from 'lodash';
</code></pre>
vs
<pre><code class="hljs" data-trim contenteditable>
import includes from 'lodash/includes';
</code></pre>
</section>
</section>
<section>
<section>
<h4>Ключевое слово super для объектов <br></h4>
<p style="font-size: 0.6em;">
ES6 позволяет использовать метод super в (безклассовых) объектах с прототипами. Вот простой пример:
</p>
</section>
<section>
<pre><code class="hljs" data-trim contenteditable>
var parent = {
foo() {
console.log("Hello from the Parent");
}
}
var child = {
foo() {
super.foo();
console.log("Hello from the Child");
}
}
Object.setPrototypeOf(child, parent);
child.foo(); // Hello from the Parent
// Hello from the Child
</code></pre>
<a
href="http://jsbin.com/kulunoj/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
</section>
<section>
<section>
<h4>Строковые шаблоны и разделители <br>(Template Literal and Delimiters)</h4>
<p style="font-size: 0.6em;">
ES6 предоставяляет более простой способ вставки значения переменной или результата выражения (т.н. "интерполяцию"), которые рассчитываются автоматически.
</p>
<ul style="font-size: 0.6em;">
<li><code>`${ ... }`</code> используется для вычисления значения переменной/выражения.</li>
<li><code>`</code>Обратные кавычки используются как разделитель.</li>
</ul>
<pre><code class="hljs" data-trim contenteditable>
let user = 'Kevin';
console.log(`Hi ${user}!`); // Hi Kevin!
</code></pre>
<a
href="http://jsbin.com/jejagih/2/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>
<section>
<p style="font-size: 0.6em;">
Можно использовать свою функцию шаблонизации для строк.
</p>
<p style="font-size: 0.6em;">
Эта функция будет автоматически вызвана и получит в качестве аргументов строку, разбитую по вхождениям параметров ${…} и сами эти параметры.
</p>
<pre><code class="hljs" data-trim contenteditable>
const t = (template, ...vals) => [template, ...vals];
const foo = 42;
const bar = 13;
const [str, ...vals] = t`some text with ${foo} and ${bar}`;
console.log(str, vals);
// ["some text with ", " and ", ""]
// [42, 13]
</code></pre>
<a
href="http://jsbin.com/zisotuq/19/edit?js,console"
target="_blank"
rel="noopener"
style="font-size: 0.6em;">
JS Bin
</a>
</section>