we need Design Patterns • What are all Patterns • General Patterns • Function Patterns • Object Creation Patterns • Anti-patterns • References & Code Agenda 29/01/2015
• Avoid problem with Global variables. • Grouping JavaScript files made easy. • Used in Compiled CoffeeScript, Jquery... Immediate Function Pattern 29/01/2015 (function() { alert(“Init Script”) })() (function(message, global) { alert(“Init Script”) })(“hi”, this)
• Magic is done by “new” • The execution will be like, function constr(value1, value2) { // var this = {}; this.pro1 = value1; this.pro2 = value2; // return this; } var obj1 = new constr(“foo”, “bar”) // {pro1: “foo”, pro2: “bar”} var obj2 = new constr(“bar”, “foo”) // {pro1: “bar”, pro2: “foo”}
Web Applications Development Cross-Platform Business Mobile Apps Development Social Media Integrated Applications Development Product Development Services 29/01/2015