AngularJS Directives, Demystified

AngularJS Directives, Demystified

10:44 AM  /  Unknown  /  0 Comments

First thing to grasp in AngularJS is that it's not a jargon. Every concept in Angular is already there in JavaScript or in other libraries. Keep reading. What is a Directive in AngularJS? Well, according to AngularJS documentation Directives are Marker such as Element, Attribute, CSS class or even comment in the DOM element which tell HTML compiler...

Angular Basics, create Hello World

Angular Basics, create Hello World

5:12 AM  /  Unknown  /  0 Comments

Context: Angular JS Tutorials Level: Beginner Difficulty Scale: 1/10 What is AngularJS? AngularJS is the versatile JavaScript MVC framework for creating Web Application. It gives you the flexibility to change the view, write the controller and interact with data model on the go.  Many developer prefer calling it a "two-way data binding", which however is true because it...

Swap two variables in JavaScript

Swap two variables in JavaScript

7:20 PM  /  Unknown  /  0 Comments

Swapping two numbers in JavaScript is easy. There are few methods to do it. However, EcamScript 6 standard came up with a better solution which we will see later in this post. Following are the methods. Method 1: Using third variable This method is the conventional technique in any programming language. We will create third variable to store one...

AngularJS Video Tutorials

AngularJS Video Tutorials

12:06 PM  /  Unknown  /  0 Comments

Following are the collections of best video tutorials for AngularJS. 1. AngularJS Fundamentals In 60-ish Minutes By Dan Wahlin 2. Angular JS - The Basics for absolute Begginers By That JS Dude ...

Check the speed of execution in JavaScript

Check the speed of execution in JavaScript

8:06 AM  /  Unknown  /  0 Comments

Following is the technique you can use to check the speed of code execution in JavaScript. var start = new Date().getTime(); //sample code to test for(var i = 0; i <= 1000; i++){ console.log("Test: " + i); } var elapsed = (new Date().getTime() - start) / 1000 + " Seconds"; console.log(elapsed); Code Explanation First we create a variable...

Welcome to ConsolidateJS

Welcome to ConsolidateJS

7:10 AM  /  Unknown  /  0 Comments

Dear Reader, My name is Tirumal Rao and I am a front end developer. This blog is the all about nitty-gritty of JavaScript and it's applications. My work usually includes JS and it's framework or library. There is lot to discuss, hope you enjoy reading my blog as much as I enjoy writing it. Thanks, Tirumal ...