Category Archives: AngularJs


September 1, 2016 7:12 am

AngularJS vs jQuery – What Are The Major Differences?


AngularJS vs jQuery – What Are The Major Differences?
Well, both are JavaScript libraries. Each one has their advantages and disadvantages. Let’s take a look at some of the major differences between the two.

[ Read More ]


August 25, 2016 7:28 am

Top Reasons to use Angular JS


Top Reasons to use Angular JS
When it comes to the modern web development, Angular JS is one of the most fascinating libraries. Web designers love to use this because of the unique features attached to it. It is really popular at the moment. Considering the usefulness of it, several biggies like Paytm, Netflix, and Facebook etc. are already using this.

[ Read More ]


April 6, 2016 10:26 pm

Creating the logic (Angular controller) of a Hangman game


Creating the logic (Angular controller) of a Hangman game
Hangman is a popular game in which users have to guess the characters in a word with missing letters. Each time they guess a character that does not exist – a man who is being hanged is slowly drawn on the screen. When they get hanged or they complete the word, a new word is given for them and they start anew.

[ Read More ]


April 4, 2016 8:58 pm

Creating a Hangman game with Node.js/Angular.js


Creating a Hangman game with Node.js/Angular.js
Hangman is a popular game in which users have to guess the characters in a word with missing letters. Each time they guess a character that does not exist – a man who is being hanged is slowly drawn on the screen. When they get hanged or they complete the word, a new word is given for them and they start anew.

[ Read More ]


March 8, 2016 9:09 pm

Creating the HTML view of a simple CRUD to do list with Angular.js Part 2


Creating the HTML view of a simple CRUD to do list with Angular.js Part 2
Controllers in Angular.js are JavaScript functions which would hold different methods and properties. In our HTML view, we can define the controller that an element uses and all of its child elements would also be able to use the properties and methods of that controller. We can also use those properties and methods in the HTML view through Angular’s data binding or through various built-in directives. Using a controller creates a new child scope for the element in which it is applied and its children.

[ Read More ]


March 7, 2016 8:46 pm

Creating the HTML view of a simple CRUD to do list with Angular.js Part 1


Creating the HTML view of a simple CRUD to do list with Angular.js Part 1
Angular.js is a popular open-source web application framework maintained primarily by Google. It enhances the time that is required to complete an application tremendously by allowing you to insert different JavaScript logic directly into the HTML through services, directives and the alike. Using it, you can prototype faster MVC and MVVM applications.

[ Read More ]


April 9, 2015 7:13 am

Your first Angular.js note-keeping app part 2 Demo, Download


Your first Angular.js note-keeping app part 2 Demo, Download
In our main page we loop through the array with note objects and display them with the help of Angular. We make the content inside the notes to be editable, so that users can edit whichever note they want and just click on save in order for the change to persist after reload.

[ Read More ]