Skip to main content

JavaScript for Web and Library Developers

This is my first blog post on my home domain and in this series of posts I will explore various facets of JavaScript language that will help us become better programmers.  The idea is tear apart the language and understand how to use the features and build libraries like jquery, knockoutjs, backbonejs.

The idea is not to replicate this libraries, but understand the inner workings using better JavaScript coding practices, design principles and thereby make the web a better place to visit..

We will be covering the following topics, though not in order and there may be addition to this list.

  • Foundations

  • Patterns

  • Closure

  • this keyword

  • Hoisting

  • Anonymous function

  • Currying

  • Server side JavaScript

  • Canvas

  • etc.


Hope you will enjoy this journey with me!

Comments

Alona said…
I do believe additional web site entrepreneurs ought to get this site as a possible model - extremely clean and amazing styling, as well as this article. You’re an expert in this field!
Web Development said…
Web development involves developing of simple static single page of plain text to most complex web based internet applications and offers low cost programming and design services.
web development
canapé said…
Fantastic job. Must be bookmarked:)
My brother suggested I might like this website. He used
to be entirely right. This put up actually made my
day. You can not believe simply how so much time I had spent for
this info! Thanks!
Diseño Web Tunja...

[...]JavaScript for Web and Library Developers - JavaScript - javascript - web-development - Tekacademy.com - rajesh pillai[...]...
Lizbeth said…
You will find recently been following on from the weblog to get a thirty days approximately and have grabbed a huge amount of data along with liked the method you've set up your internet site. We are attempting to operate my very individual website nevertheless. I do think it's as well standard and that i need to consentrate on a lot of more compact topics. Getting as much as possible to any or all folks is just not all of that its chipped as much as become.

Popular posts from this blog

JavaScript Scope

In this blog post we will dig deeper into various aspects of JavaScript scope.  This is a pretty interesting topic  and also a topic which confuses many beginning JavaScript programmers. Understanding JavaScript scope helps you write bug free programs (hmm.. atleast helps your troubleshoot things easily) Scope control the visibility and lifetimes of variables and parameters.  This is important from the perspective of avoiding naming collisions and provides memory management service. Unlike other languages, JavaScript does not have block level scope.  For e.g. take for instance the following piece of c# code. public void Main () { int a = 5; if (true) { int b = 10; } // This will throw compile time error as b is not defined // and not within the scope of function Main(); Console.WriteLine(b); } If you write the same code in JavaScript, then the value of 'b' will be available outside the 'if' block. The reason for this is JavaScript does no...

JavaScript - The this keyword

"this" is one of the most misunderstood construct in JavaScript.  To understand this first lets go through how to create a construction function in JavaScript.  A constructor function is a function which is used to create instances of objects in JavaScript. You define a constructor function using the same notation that you use to define a normal JavaScript function.  The convention to follow is to capitalize the first letter of the function name. This requirement is not enforced by the JavaScript language but it is a generally accepted practice and there are many benefits which we will shortly discuss. Let's define a constructor function to hold our menu information. function Menu() { } So, in the above snippet you have a constructor function named Menu defined. At present this function doesn't do anything good. Let's see how to invoke this function var menu = new Menu(); Let's add some public properties to this function. function Menu() { ...