What does it mean when a javascript function is declared in the following way:
JSON.stringify = JSON.stringify || function (obj)
{
//stuff
};
How is the above different from just declaring it like below?
function stringify(obj)
{
//stuff
}
|
What does it mean when a javascript function is declared in the following way:
How is the above different from just declaring it like below?
|
|||
| show 2 more comments |
|
|||||||
|
|
The first declaration doesn't override the function if it already exists, the second declaration does ! |
|||
|
|
|
The above code is checking if JSON.stringify function is already defined and if it is then just use it if not use the new definition. |
|||
|
|
|
In other words it checks if JSON.stringify already exists and if not it assigns the second function to it. To answer your question in your first example your function is callable over |
||||
|
|
|
The first code-block is equivalent to this:
Explanation: If the The background is this: Some browsers implement the Another example:
Modern browsers pass the event object into event handlers; but older versions of IE don't do that. Therefore, you need to test whether or not the passed-in argument is an object (is it defined?), and if not (IE detected!), use the This line of code does that:
It is equivalent to this:
|
||||
|
|
|
If function stringify is has been already defined, it will not be defined more than one time. |
|||
|
|
|
The first way will declare the function if it already exists.
This means that |
|||
|
|
|
It utilizes short-circuit evaluation. Additionally, the syntax may be a little bit confusing. It's checking for |
|||
|
|
var a = function() { ... }defines a variable named a which has the anonymous function as a value. Same withJSON.stringify = function() { ... }. – rid Jun 29 '11 at 16:06