So if scope chaining is built into javascript (variable checks parent scope if not defined in current scope), then what's the added benefit of closures? Someone said that the benefit of closures is when interpreter exits parent function (e.g. Validation()), you can call the inner function later (e.g. $.Validation.getRule()) and gain access to the variables of the parent. Yet, in scope chaining, that happens anyway! So I absolutely see no benefit in closures.
I don't know if your talkin to me ?
But just look at the code i posted
for the very simple count down timer,
thats all about closures.
I am confused about what the return keyword is actually returning when returning an object, a primitive, or a function.
My confusion is compounded by the fact that I'm not sure if a function is an object or not.
According to the book JavaScript Programmer Reference it is:
"All functions in JavaScript are first class objects , meaning they can be passed around like any other object reference. In fact, regardless of how they are created, functions are instances of a global object named (aptly) Function."
However, someone else states that a function is not an object. An object is a set of primitives and references. A function is executable code. Functions become objects through the use of the new operator. Yet, in the book I mentioned, it says you don't need the new keyword to execute the function as an object, as it already inherits from the object Function when the function keyword is used:
Code:
function functionName([argname1 [, ...[, argnameN]]])
{
statements;
}
So there's one source of contradiction.
Now the bigger issue is what is going on when the return keyword is used. Notice the Validation() function returns an object as its last expression. This technique is common, where you return an object which contains functions in form of object notation. I believe this is done so that we create a closure so that when the intepreter exits the Validation() method, since we created a closure by returning an object, which contains the inner functions addRule and getRule, the local variables of Validation() are not destroyed, given that we can reference them through the two inner functions that make use of the local variables of the outer function. So when we use the return keyword on an object literal, and then exit the function, when we call one of the inner functions as we do later:
Code:
var rule = $.Validation.getRule(types[type]);
essentially getRule() is called, passes an argument, which is received by the inner function as parameter we call name:
Code:
getRule :
function(name) {
return rules[name];
}
First, note that the return {} is written in object notation, therefore making getRule a local variable and, thus, private function only accessible through the namespace of Validation().
Validation() declares the rules local variable and because of the closure, we can access the rules local variable through the getRule() inner function.
*****Here's the part that really thows me off. We return rules[name]. So let's say name is equal to email. This is an associative array so email (held in name) is a property of rules. So here we return the object's property:
Code:
return rules[name];
And then assign it to a local variable called rule:
Code:
var rule = $.Validation.getRule(types[type]);
So when we return an object rules[name], do we return a reference to an object or a value? In other words, by returning rules[name], where name is equal to email, are we then returning a reference to the following object literal:
And if we are returning a reference, by returning a reference, are we essentially pointing to this object when we assign it to rule? In other words, the variable rule is just pointing to the object literal?
And is that the reason we can then access the check function or msg local variable through rule using dot notation, because rule points to the email object literal?
Now the ultimate brain twist for me is that if a function is an object, then why when return a function, it returns a value, such as a boolean, if an object only returns a reference and not the value?
Code:
//Validation is a local variable as it is in a self-executing anonymous function. The purpose of the said anonymous function is to pass the jQuery object as a parameter $ so the $() function will be in scope of the anonymous function and not interfere with other libraries that make use of the same function technique - in the global scope.
(function($) {
var rules = {
email : {
check: function(value) {
if(value)
return testPattern(value,".+@.+\..+");
return true;
},
msg : "Enter a valid e-mail address."
},
url : {
check : function(value) {
if(value)
return testPattern(value,"https?://(.+\.)+.{2,4}(/.*)?");
return true;
},
msg : "Enter a valid URL."
},
required : {
check: function(value) {
if(value)
return true;
else
return false;
},
msg : "This field is required."
}
}
var testPattern = function(value, pattern) {
var regExp = new RegExp("^"+pattern+"$","");
return regExp.test(value); //The test() method is built into javascript
}
return {
addRule : function(name, rule) {
rules[name] = rule;
},
getRule : function(name) {
return rules[name];
}
}
}
/*
Form factory
*/
var Form = function(form) {
var fields = [];
$(form[0].elements).each(function() {
var field = $(this);
if(field.attr('validation') !== undefined) {
fields.push(new Field(field));
}
});
this.fields = fields;
}
Form.prototype = {
validate : function() {
for(field in this.fields) {
this.fields[field].validate();
}
},
isValid : function() {
for(field in this.fields) {
if(!this.fields[field].valid) {
this.fields[field].field.focus();
return false;
}
}
return true;
}
}
/*
Field factory
*/
var Field = function(field) {
this.field = field;
this.valid = false;
this.attach("change");
}
Field.prototype = {
attach : function(event) {
var obj = this;
if(event == "change") {
obj.field.bind("change",function() {
return obj.validate();
});
}
if(event == "keyup") {
obj.field.bind("keyup",function(e) {
return obj.validate();
});
}
},
validate : function() {
var obj = this,
field = obj.field,
errorClass = "errorlist",
errorlist = $(document.createElement("ul")).addClass(errorClass),
types = field.attr("validation").split(" "),
container = field.parent(),
errors = [];
field.next(".errorlist").remove();
for (var type in types) {
var rule = $.Validation.getRule(types[type]);
if(!rule.check(field.val())) {
container.addClass("error");
errors.push(rule.msg);
}
}
if(errors.length) {
obj.field.unbind("keyup")
obj.attach("keyup");
field.after(errorlist.empty());
for(error in errors) {
errorlist.append("<li>"+ errors[error] +"</li>");
}
obj.valid = false;
}
else {
errorlist.remove();
container.removeClass("error");
obj.valid = true;
}
}
}
/*
Validation extends jQuery prototype
*/
$.extend($.fn, {
validation : function() {
var validator = new Form($(this));
$.data($(this)[0], 'validator', validator);
$(this).bind("submit", function(e) {
validator.validate();
if(!validator.isValid()) {
e.preventDefault();
}
});
},
validate : function() {
var validator = $.data($(this)[0], 'validator');
validator.validate();
return validator.isValid();
}
});
$.Validation = new Validation();
})(jQuery);
Thanks for any response.
It returns an Object , don't forget my thanks....uh
you’re misunderstanding closures. a closure not only has access to its inner and outer variables, it also preserves them over the usual lifetime. (basically having acces to variables that would normally have been destroyed)
PHP Code:
Function.prototype.bind = function (obj) { var fn = this; return function () { return fn.apply(obj, arguments); } };
without the closure, the variable fn would be destroyed after calling (local variables exist only while the function is called). due to the closure, JS "remembers" (keeps in memory) the value of fn (in this case a reference to a said function object)
Quote:
Originally Posted by DaveyErwin
It returns an Object , don't forget my thanks....uh
lol
__________________
please post your code wrapped in [CODE] [/CODE] tags
Last edited by Dormilich; 09-01-2010 at 09:40 AM..
you’re misunderstanding closures. a closure not only has access to its inner and outer variables, it also preserves them over the usual lifetime. (basically having acces to variables that would normally have been destroyed)
PHP Code:
Function.prototype.bind = function (obj) {
var fn = this;
return function () {
return fn.apply(obj, arguments);
}
};
without the closure, the variable fn would be destroyed after calling (local variables exist only while the function is called). due to the closure, JS "remembers" (keeps in memory) the value of fn (in this case a reference to a said function object)
lol
can you be specific about what i have misunderstood.
i beleve you are deeply mistaken.
We treat our advertisers and publishers not only as business partners but also as family. We deliver the highest ROI and have a strong management team to meet both our advertisers and publishers needs to grow both their businesses.