I think, setTimeout function should be the best hidden feature of JavaScript. First time when I studied JavaScript, every books or every website always tell about how to use “setTimeout” function like “eval” function but it has delay time before execute. Please look at the following code.
// This code will shows 'Hello World!' message in modal dialog after 1 s.
setTimeout("alert('Hello World!');", 1000);
I just know that we can call this function by passing function as the first parameter like the following code.
// This code will works like the above function.
setTimeout(function()
{
alert('Hello World!');
}, 1000);
As you know, the first code style has benefit about dynamic creating statement. But it can't receive any private variable in current scope like the following code.
var x = 3;
var statement = 'x';
// Set statement to 'x + x + x + x + x'
for(var i = 0; i < 4;i++)
{
statement += " + x";
}
// Display result of 'x + x + x + x + x' that is 15 after 1 s.
// However, this code will throw exception because it cannot find 'x' variable in global scope.
setTimeout('alert(' + statement + ')', 1000);
By the way, you can solve this error by using my second pattern that I just tell like the following code.
var x = 3;
setTimeout(function()
{
var result = 0;
for(var i = 0; i < 5;i++)
{
result += x;
}
// Show result of the above calculation that is 15 without error.
alert(result);
}, 1000);
I think that 99% of web developers (excluding JavaScript plug-in developer) do not know about this pattern.