forked from JTCE/codewithmosh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathangular-master-class.html
More file actions
8166 lines (5958 loc) · 234 KB
/
angular-master-class.html
File metadata and controls
8166 lines (5958 loc) · 234 KB
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>
<!-- Mirrored from codewithmosh.teachable.com/p/angular-master-class by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 07 Oct 2017 20:21:02 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-66465936-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-66465936-3');
</script>
<!-- Google Analytics Content Experiment code -->
<script>function utmx_section(){}function utmx(){}(function(){var
k='162218849-2',d=document,l=d.location,c=d.cookie;
if(l.search.indexOf('utm_expid='+k)>0)return;
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
</script><script>utmx('url','A/B');</script>
<!-- End of Google Analytics Content Experiment code -->
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta charset="UTF-8">
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="a5FN8ifJxdWz+c4q/R+tsHePAvrZvH3Hh+0O0eh8hfPoi6cuAx6hlPryOggD0kLjR/9kUr85et1ZYgm7bvlx/w==" />
<link href="d2oz8i5n9se8ej.cloudfront.net/school-css-1507331834-146684-3393d9697e1bd3e8252777b5a8272fea.css" rel="stylesheet" data-turbolinks-track="true"></link>
<title>Angular 4: Beginner to Pro in as little as 1 week | Code with Mosh</title>
<meta name="description" content="The most in-depth Angular course available - covers every step of building and deploying fast, scalable single page apps" />
<link rel="canonical" href="angular-master-class.html" />
<meta property="og:title" content="Angular 4: Beginner to Pro in as little as 1 week" />
<meta property="og:url" content="http://codewithmosh.teachable.com/courses/206545" />
<meta property="og:image" content="https://www.filepicker.io/api/file/stccKo5kR5iZY7CtLFvi" />
<meta property="og:description" content="The most in-depth Angular course available - covers every step of building and deploying fast, scalable single page apps" />
<meta name="brand_video_player_color" content="#fc4364" />
<meta name="site_title" content="Code with Mosh" />
<style>.big-title {
font-size: 39px;
color: #000;
font-weight: bold;
margin-bottom: 36px;;
}
.align-center {
text-align: center;
}
.blurb {
width: 85%;
margin: 0 auto;
}
.img-feature {
width: 70%;
margin: 0 auto;
}
.img-caption {
line-height: 21px !important;
font-weight: bold !important;
color: #000 !important;
text-align: center !important;
}
ul.features {
list-style: none;
}
ul.features li:before {
content: '✓ ';
}
.big-text {
color: #6e79d2;
font-size: 40px;
}
.small-text {
font-size: 20px;
text-transform: uppercase;
}
.video_embed p {
width: 80%;
margin: 0 auto;
margin-bottom: 50px;
font-weight: normal;
}
.course-top-row.has-hero-image .course-header-container .course-title {
line-height: 56px;
width: 80%;
margin: 0 auto;
margin-bottom: ;
}
.course-block.video_embed h2, .block.video_embed h2 {
margin-bottom: 40px;
}
.closing_letter p {
font-weight: normal;
}
.closing_letter li {
font-size: 18px;
line-height: 33px;
}
.closing_letter h1 {
font-size: 39px;
font-weight: bold;
color: #000;
line-height: 48px;
}
.course-section ul.section-list .section-item .item {
background: #f9f9f9;
color: #333;
padding: 18px;
}
.course-section ul.section-list .section-item .title-container {
border-left-color: #eee;
}
.course-section ul.section-list .section-item.next-lecture .item {
background: #a5e0ff;
}
.course-section ul.section-list .section-item.next-lecture .title-container {
border-left-color: #8ec6e3;
}
.course-section ul.section-list .section-item .item:hover {
background: #f0f0f0;
color: #000;
}
.course-section ul.section-list .section-item .item:hover .title-container {
border-left-color: #ddd;
}
.course-section ul.section-list .section-item.incomplete .status-icon {
box-shadow: inset 0px 0px 0px 2px #79d0f9;
}
.course-section ul.section-list .section-item.incomplete .item:hover .status-icon {
box-shadow: inset 0px 0px 0px 2px #c7c7c7;
}
.course-section .section-title {
background: #7E819A;
color: #fff;
}
.coupon-code-applied {
background: rgba(164, 218, 236, 0.6);
color: #353854;
}
.checkout-button-group .product-details h3.product-name .discount {
color: #fff;
background: #737577;
padding: 2px 8px;
border-radius: 7px;
}
.course-sidebar .row.lecture-sidebar .course-section .section-item {
border-bottom: 1px solid rgba(123, 123, 123, 0.1) !important;
}
.course-listing:hover {
box-shadow: 0px 0px 0px 1px #c9cce2;
border: 1px solid #c9cce2;
}
.course-listing .course-listing-extra-info .course-price {
color: #6975cc;
}</style>
<script src='fast.wistia.com/assets/external/E-v1.js'></script>
<script src='www.google.com/recaptcha/api.js' async defer></script>
<!-- <script src="d2oz8i5n9se8ej.cloudfront.net/assets/application-667db44d96c323475d49b0e9fd596e2d3c7c011d47752779fd6b0c7d936b2b33.js" data-turbolinks-track="true"></script> -->
<!-- <script src="d2oz8i5n9se8ej.cloudfront.net/packs/dynamic-page-initializer-2dd6c8204ad5b4faad46.js"></script> -->
<link href="http://codewithmosh.teachable.com/blog/rss" rel="alternate" title="RSS Feed" type="application/rss+xml" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<meta http-content='IE=Edge' http-equiv='X-UA-Compatible'>
<meta content='width=device-width,initial-scale=1.0,user-scalable=no' name='viewport'>
<!-- HEADER -->
<header class=''>
<!-- Navbar -->
<div class="navbar navbar-fedora navbar-fixed-top is-at-top bs-docs-nav is-not-signed-in navbar-course-hero hide-nav-background-color" id='navbar' role='navigation'>
<div class='container'>
<div class='navbar-header'>
<!-- Site logo -->
<a class='navbar-brand header-logo' href='http://codewithmosh.teachable.com/'>
<span class="sr-only">Code with Mosh</span>
<img src="https://process.fs.teachablecdn.com/ADNupMnWyR7kCWRvm76Laz/resize=height:60/https://www.filepicker.io/api/file/l6zamydgRaGdduFShjV2" alt="Code with Mosh" srcset="https://process.fs.teachablecdn.com/ADNupMnWyR7kCWRvm76Laz/resize=height:120/https://www.filepicker.io/api/file/l6zamydgRaGdduFShjV2 2x" />
</a>
<!-- Header Menu -->
</div>
</div>
</div>
</div>
</header>
<div class='view-school'>
<div class="blocks-page blocks-page-course_sales_page" id="blocks-page-1048503">
<div class="course-block block hero odd-stripe" id="block-3949447">
<!-- COURSE PAGE -->
<!-- Course Info -->
<div class='course-top-row has-hero-image' style='background:url("https://process.fs.teachablecdn.com/ADNupMnWyR7kCWRvm76Laz/resize=width:1440/https://www.filepicker.io/api/file/PygZQ5RSmC1EBKKuxQst");'>
<div class="black-overlay" style="opacity: 0;"> </div>
<div class='container'>
<div class='row'>
<!-- Course Video/Image -->
<div class='col-md-5 course-splash-media'>
<div class='img-rounded'>
<img src="https://process.fs.teachablecdn.com/ADNupMnWyR7kCWRvm76Laz/resize=width:705/https://www.filepicker.io/api/file/stccKo5kR5iZY7CtLFvi" alt="Stccko5kr5izy7ctlfvi" />
</div>
</div>
<div class='col-md-6 course-header-container'>
<h1 class='course-title'>
Angular 4: Beginner to Pro
</h1>
<h2 class='course-subtitle'>
The most in-depth Angular course available - covers every step of building and deploying fast, scalable single page apps
</h2>
<!-- Embeds a button that will go to checkout if the course has only a single product,
or scroll to the product select form if there is more than one product -->
<!-- <a id='enroll-button-top' class='btn btn-hg btn-primary btn-header-enroll payment-scroller'>
<i class='fa fa-shopping-cart'></i> Enroll in Course
</a> -->
</div>
</div>
<!-- Pre-enrollment Form -->
</div>
</div>
<!-- Watch promo modal -->
</div>
<div class="course-block block description_with_share_icons even-stripe" id="block-3949449">
<div class='container'>
<div class='row'>
<div class='col-lg-2 col-md-2 hidden-sm hidden-xs' style=''>
<center>
<a href='https://www.facebook.com/' target='_blank'>
</a>
<br>
<a href="https://www.facebook.com/sharer.php?u=http://codewithmosh.teachable.com/courses/206545" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class='fa fa-facebook-square facebook-button'></i>
</a>
<br>
<a href="https://twitter.com/intent/tweet/?url=http://codewithmosh.teachable.com/courses/206545&text=Angular%204:%20Beginner%20to%20Pro:" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="fa fa-twitter-square twitter-button"></i>
</a>
<br>
<a href="https://plus.google.com/share?url=http://codewithmosh.teachable.com/courses/206545" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="fa fa-google-plus-square google-plus-button"></i></a>
<br>
<a href="http://www.linkedin.com/shareArticle?mini=true&url=http://codewithmosh.teachable.com/courses/206545&title=Angular%204:%20Beginner%20to%20Pro" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<i class="fa fa-linkedin-square linkedin-button"></i></a>
</center>
</div>
<div class='col-xs-1 visible-xs'></div>
<div class='col-lg-8 col-md-8 col-sm-10 col-lg-offset-0 col-md-offset-0 col-sm-offset-1 col-xs-10 course-description'>
<p>
<div class="row">
<div class="col-md-6">
<h1 class="big-title">What is Angular?</h1>
<p>Angular is one of the most popular frameworks for building client apps with HTML, CSS and TypeScript.
</p>
<h1 class="big-title">Why learn Angular?</h1>
<p>Put simply, Angular is a must-have on your resume.
Lucky for you, this course is a full-on, deep-dive into Angular that will give you the competitive edge you’re looking for.
</p>
</div>
<div class="col-md-6">
<img src="https://www.filepicker.io/api/file/XGDMxcOpQMyx0WT2tPKb" class="img-responsive">
</div>
</div>
</p>
<br>
</div>
</div>
</div>
</div>
<div class="course-block block rich_text odd-stripe" id="block-4251890">
<div class='container'>
<div class='row'>
<div class='col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 course-description'>
<div style="text-align: center">
<h1 class="big-title">A Step-by-Step, A to Z course</h1>
<p class="blurb">What you'll get when you sign up for this course:
</p>
<ul style="text-align: left">
<li>Learn mastery skill level in the fastest time possible - no other course can make this promise</li>
<li>Clear path from beginner to pro - lessons progress in a logical way</li>
<li>No more wasting time on disjointed, out-of-date online tutorials</li>
<li>Learn at your own pace - lifetime access - so take your time if you prefer</li>
<li>Little-known expert tips and tricks to make Angular app-building a breeze</li>
<li>Gain confidence and skills quickly - build a real, working app in the course</li>
<li>No prior knowledge needed - just basic familiarity with HTML, CSS and JavaScript</li>
<li>More than 370 lessons, equating to 30 hours of HD video tutorials</li>
<li>Watch on any device, online or offline - mobile friendly and downloadable lessons</li>
</ul>
<br>
<h3>You'll learn to:</h3>
</div>
<div class="row" style="margin-top: 50px;">
<div class="col-md-3">
<img src="https://www.filepicker.io/api/file/hPceMdZBRdmEcFBniPtq" class="img-responsive img-feature">
<p class="img-caption">Build client apps on your own
</p>
</div>
<div class="col-md-3">
<img src="https://www.filepicker.io/api/file/wglaOWu4TNaWlWDkP3Xw" class="img-responsive img-feature">
<p class="img-caption">Troubleshoot common errors
</p>
</div>
<div class="col-md-3">
<img src="https://www.filepicker.io/api/file/XxtfcfVbRm2sG9O2M0Xv" class="img-responsive img-feature">
<p class="img-caption">Write clean and maintainable code
</p>
</div>
<div class="col-md-3">
<img src="https://www.filepicker.io/api/file/z3oOP8OfQaq9TqH8wuy0" class="img-responsive img-feature">
<p class="img-caption">Apply best practices
</p>
</div>
</div>
<h3 class="align-center" style="margin: 40px 0">Learn using real-world examples, assignments<br>and a complete project, from setup to deployment!
</h3>
</div>
</div>
</div>
</div>
<div class="course-block block rich_text even-stripe" id="block-4251947">
<div class='container'>
<div class='row'>
<div class='col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 course-description'>
<div class="align-center">
<h1 class="big-title">Become a Skilled Front-end <br>or Full-stack Developer</h1>
<p>Right from the beginning, you'll jump in and build your first Angular 4 app within minutes. There's no boring, long introductions, we'll get straight into the nuts and bolts!
</p>
</div>
<div class="row">
<div class="col-md-6">
<ul>
<li>Display data and handle events</li>
<li>Build re-usable components</li>
<li>Manipulate the DOM using directives</li>
<li>Format data using pipes</li>
<li>Build template-driven and reactive forms</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Consume HTTP services</li>
<li>Use Reactive Extensions and observables</li>
<li>Implement routing and navigation</li>
<li>Add authentication and authorization</li>
<li>Deploy your applications</li>
</ul>
</div>
</div>
<div class="row" style="width: 50%; margin: 40px auto;">
<div class="col-md-6 align-center">
<div class="big-text">30
</div>
<div class="small-text">hours
</div>
</div>
<div class="col-md-6 align-center">
<div class="big-text">374
</div>
<div class="small-text">lessons
</div>
</div>
</div>
<h3 class="blurb align-center">Enroll now and watch the videos online or offline <br> on any devices!</h3>
</div>
</div>
</div>
</div>
<div class="course-block block rich_text odd-stripe" id="block-4251954">
<div class='container'>
<div class='row'>
<div class='col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 course-description'>
<div class="align-center">
<h1 class="big-title">Get an Expert Edge</h1>
<p class="blurb">You'll learn things that other courses don't offer, making you stand out amongst the crowd:
</p>
</div>
<div class="row" style="margin-top: 50px">
<div class="col-md-2 col-md-offset-1">
<img src="https://www.filepicker.io/api/file/VMSKsfZRKyJugw3TrUmo" class="img-responsive">
<p class="img-caption">Firebase
</p>
</div>
<div class="col-md-2">
<img src="https://www.filepicker.io/api/file/RsQIZM9QXGPkPgpCDgWg" class="img-responsive">
<p class="img-caption">Angular Animations
</p>
</div>
<div class="col-md-2">
<img src="https://www.filepicker.io/api/file/Y2PhfMBpQ7i0HB8Px1GE" class="img-responsive">
<p class="img-caption">Angular Material
</p>
</div>
<div class="col-md-2">
<img src="https://www.filepicker.io/api/file/JTmPeYcnTF4EiEthloob" class="img-responsive">
<p class="img-caption">Redux Architecture
</p>
</div>
<div class="col-md-2">
<img src="https://www.filepicker.io/api/file/CKeCOb50TY6rDShXqqKl" class="img-responsive">
<p class="img-caption">Unit Testing
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="course-block block video_embed even-stripe" id="block-4253970">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 text-center">
<h2>It’s like having an experienced developer right next to you</h2>
<p>I’ll share my 17 years of experience as a software engineer, giving you all the expert advice, tips and tricks you’ll need to become an Angular master. Included in the 30 hours of tutorials are 8 hours of walkthrough guides on how to build a real e-commerce application with Angular 4, Firebase 4 and Bootstrap 4. There’s nothing like hands-on learning to fully understand all the concepts.</p>
<br>
<center>
<div class='wistia_responsive_padding'>
<div class='wistia_responsive_wrapper'>
<div class='video-asset-wistia-player stillSnap=false wistia_embed' data-wistia-id='v0fid7p7iy' id='wistia-v0fid7p7iy' >
</div>
</div>
</div>
</center>
</div>
</div>
</div>
<div class="course-block block rich_text odd-stripe" id="block-4251748">
<div class='container'>
<div class='row'>
<div class='col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 course-description'>
<div class="align-center">
<h1 class="big-title">No Prior Knowledge Needed</h1>
<p>You don't need familiarity with TypeScript or any previous versions of Angular.
<br>You just need some basic familiarity with HTML, CSS and JavaScript.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="course-block block testimonial even-stripe" id="block-4267949">
<div class="container">
<div class="row">
<div class="col-md-2 col-md-offset-1"><img src="https://www.filepicker.io/api/file/nV189hYSWOrHtAObh0rY" class="large-img-rounded img-responsive"/></div>
<div class="col-xs-12 col-md-8 quote-wrapper"><p class="testimonial-quote">"The course pace, examples, challenges and video quality are exceptional. I have watched and coded along with several tutorials from various sites but this course, so far, it absolutely one of the best if not the best. The project at the end of the course was also well done. I made plenty of mistakes as I coded along and learned a ton while trying to fix those errors."
</p>
<p>- <strong>AJ Speller</strong><em></em>
</p></div>
</div>
</div>
</div>
<div class="course-block block testimonial odd-stripe" id="block-4260688">
<div class="container">
<div class="row">
<div class="col-md-2 col-md-offset-1"><img src="https://www.filepicker.io/api/file/kf12Dp0TP64vbkDDZFA6" class="large-img-rounded img-responsive"/></div>
<div class="col-xs-12 col-md-8 quote-wrapper"><p class="testimonial-quote">"Mosh is the best! Clear explanations and detailed discussions about great engineering practices. First class course. I can honestly say that if you want to learn and actually understand Angular well whilst becoming a better programmer then this is the only course you will need. Many thanks!"
</p>
<p>- <strong></strong><strong>Paul Whitehouse</strong><strong></strong><em></em>
</p></div>
</div>
</div>
</div>
<div class="course-block block testimonial even-stripe" id="block-4298722">
<div class="container">
<div class="row">
<div class="col-md-2 col-md-offset-1"><img src="https://www.filepicker.io/api/file/IDpPTkvETU20onpszPkY" class="large-img-rounded img-responsive"/></div>
<div class="col-xs-12 col-md-8 quote-wrapper"><p class="testimonial-quote">"I've never seen someone explain something so easy in such a short period of time and actually understand it. There are courses, which are longer and much more difficult
to understand, this is not one of them."
</p>
<p>- <strong>Simon Cassar</strong><em></em>
</p></div>
</div>
</div>
</div>
<div class="course-block block testimonial odd-stripe" id="block-4253697">
<div class="container">
<div class="row">
<div class="col-md-2 col-md-offset-1"><img src="https://www.filepicker.io/api/file/ypDtq72URPEahkOMvNCT" class="large-img-rounded img-responsive"/></div>
<div class="col-xs-12 col-md-8 quote-wrapper"><p class="testimonial-quote">"Mosh is a great teacher that explains every single line of code he's writing. Exactly what I was looking for when I decided to start programming with this framework."
</p>
<p>- <strong>Gabriel Rapone</strong><em></em>
</p></div>
</div>
</div>
</div>
<div class="course-block block curriculum even-stripe" id="block-3949451">
<div class='container'>
<div class='row'>
<div class='col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2'>
<h2>
Class Curriculum
</h2>
<br>
<div class='row'>
<div class='col-sm-12 course-section'>
<div class='section-title' data-days-until-dripped="0" data-course-id="206545">
<span class="section-lock">
<i class="fa fa-lock"></i>
</span>
Getting Started
<div class="section-days-to-drip">
<div class="section-days-logged-in">
Available in
<span class="section-days-to-drip-number"></span>
days
</div>
<div class="section-days-logged-out">
<span class="section-days-to-drip-number"></span>
days
after you enroll
</div>
</div>
</div>
<ul class='section-list'>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196122' target="_blank">
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
1- Introduction
(2:51)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196127' target="_blank">
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
2- What is Angular
(2:00)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196124' target="_blank">
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
3- Architecture of Angular Apps
(3:48)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196125' target="_blank">
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
4- Setting Up the Development Environment
(2:40)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196128' target="_blank">
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
5- Your First Angular App
(2:25)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196123'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
6- Structure of Angular Projects
(6:54)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196126'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
7- Webpack
(3:15)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196121' target="_blank">
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-preview'>
Preview
</div>
8- Angular Version History
(3:34)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3457376'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
9- Course Structure
(3:46)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3457380'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
10- Making a Promise
(0:48)
</a>
</li>
</ul>
</div>
</div>
<div class='row'>
<div class='col-sm-12 course-section'>
<div class='section-title' data-days-until-dripped="0" data-course-id="206545">
<span class="section-lock">
<i class="fa fa-lock"></i>
</span>
TypeScript and Object-oriented Programming Fundamentals
<div class="section-days-to-drip">
<div class="section-days-logged-in">
Available in
<span class="section-days-to-drip-number"></span>
days
</div>
<div class="section-days-logged-out">
<span class="section-days-to-drip-number"></span>
days
after you enroll
</div>
</div>
</div>
<ul class='section-list'>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196190'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
1- Introduction
(0:41)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196197'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
2- What is TypeScript
(2:24)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196198'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
3- Your First TypeScript Program
(3:00)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196199'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
4- Declaring Variables
(4:49)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196200'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
5- Types
(5:43)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196201'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
6- Type Assertions
(2:47)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196202'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
7- Arrow Functions
(1:44)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196204'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
8- Interfaces
(3:54)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196203'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
9- Classes
(4:31)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196192'>
<span class='lecture-icon'>
<i class='fa fa-youtube-play'></i>
</span>
<div class='btn-primary btn-sm pull-right lecture-start'>
Start
</div>
10- Objects
(4:09)
</a>
</li>
<li class='section-item'>
<a class='item' href='http://codewithmosh.teachable.com/courses/angular-master-class/lectures/3196189'>
<span class='lecture-icon'>