Book Image

Angular 5 Fundamentals [Video]

By : Christoffer Noring, Pablo Deeleman
Book Image

Angular 5 Fundamentals [Video]

By: Christoffer Noring, Pablo Deeleman

Overview of this book

<p><span id="description" class="sugar_field">The latest version of Angular comes with several new features that help you to make your applications smaller and faster. This course will show you how to set up an Angular project, and you’ll build Angular components right from the beginning. </span></p> <p><span id="description" class="sugar_field">You’ll explore and work with the components to build your app. Next, you’ll find out more about TypeScript and use it to build apps in the best way possible. Then you’ll be introduced to the building blocks: Properties, Events, Directives, and Pipes, and see how they can be used to implement and enhance the components. </span></p> <p><span id="description" class="sugar_field">Moving on, you’ll use Angular components to organize your components in a scalable way. Then you’ll understand how to get data in your app and add navigation to it. Further on, you’ll deep dive and work with Forms and Authentication. </span></p> <p><span id="description" class="sugar_field">All in all, this course is designed is to give you a great start when developing apps using Angular and TypeScript.</span></p> <p><span id="description" class="sugar_field">The code bundle for the video course is available at - <a style="font-weight: normal;" href="https://github.com/PacktPublishing/Angular-5-Fundamentals" target="_new">https://github.com/PacktPublishing/Angular-5-Fundamentals</a></span></p> <h2><span class="sugar_field">Style and Approach</span></h2> <p><span class="sugar_field"><span id="trade_selling_points_c" class="sugar_field">This course tells you everything there is to know to get you well-acquainted with Angular without bogging you down. Everything is neatly laid out under clear headings for quick consultation, giving you the information required to understand a concept immediately. You’ll also get full coverage of the TypeScript syntax required to follow the examples included.</span></span></p>
Table of Contents (7 chapters)
Chapter 2
Introducing TypeScripts
Content Locked
Section 2
Functions, Lambdas, and Execution Flow
The same as in JavaScript, functions are the processing machines where we analyze input, digest information, and apply the necessary transformations to the data provided to either transform the state of our application or return an output that will be used to shape our application's business logic or user interactivity. Let’s see the implementation of function in TypeScript. - Annotate types in functions - Use different function parameters and overload the function signature - Use lambda functions