In last lesson we began considering new modern javascript features.Today we'll consider another of it. Today we will talk about async/await - the new way to work with promises; new javascript data structure - Map and Set and also "syntax sugar" - classes....
JavaScript
New javascript features overview. Part one
JavaScript is extension of ECMAScript language. One of the largest ECMAScript update for developers is ECMAScript 2015 (ECMAScript 6). Today we'll consider some of new features of ECMAScript. In this lesson we'll look at some modern Javascript features: variables (new...
Jquery plugins
In last lesson we finished to learn jquery basics. With jquery functions you can not only to manipulate html, but extend jquery capabilities - you can write plugins. Plugin is software decision, which extends existing functionality of any program/library/framework. In...
Routing in angularjs
In this lesson we will finish to learn angular basics. Today we will consider routing. Routing in angular lets your to create "effect multi-page app" in single page web app. For providing routing in your app you need to include angular-route module.. Don't forget add...
Angularjs. Services. $http service
Today we'll consider services in angular on the example of $http service. $http is one of the powerful and important services in angular. It lets developer to communicate with server. Also it helps to make cross domain requests. In some cases services are similar on...
Angular filters. Create your own filters
In this tutorial we'll discuss filters in angular. Angular has got several build-in filters. Also we will create our custom filter with filter method. There are the list of build-in filters below: uppercase formats string to uppercase. lowercase formats string to...
Angular js. Form validation
In this tutorial we will consider form validation with angular. The main advantage of using angular to validate form is simplicity and fast implementation. While making validation you need some important steps. First of all you need to add name attribute to form....
Angular js. Pass data from form to model
We will continue to build our angular app, Today we will realize adding data from form to model. To make adding data to model from form with angular we need to do this steps: adding angula directive ng-click to element which data will send to controller while click...
Angular js. Modules, directives, controllers, expressions, MVC
In last lesson. Today we begin to build simple angular app, while discussing the basic concepts - directives, modules, expressions, controllers, and shortly consider approach to build apps - MVC (Model-View-Controller). Let's discuss key definitions of this lesson:...