var objectTest=
{
test1: function( )
{
val1 = 1;
},
// hows accessing the
test2: function( )
{
alert( val1 );
}
};
objectTest.test2( );
| |||||||
feedback
|
|
By not using the prefix
As @Pekka points out, your example (above) requires the calling of
| |||||
|
feedback
|
|
It can't. Two functions can't run at the same time, so sharing local scope is impossible the way you show. You would have to define | |||
|
feedback
|
|
Depends on what you ultimately want to do. You could make it a public member of the object: Example: http://jsfiddle.net/wqr6W/
This of course changes your original code. What you actually need to do will depend on your circumstance. Or this: Example: http://jsfiddle.net/wqr6W/1/
| ||||
|
feedback
|
|
Adding another answer in order to more directly answer the question. If you are actually talking about a local variable to a function, the simple answer is that you can not access it unless you pass a function out of the function that has the variable, which makes reference to the variable. This is called creating a closure. Example: http://jsfiddle.net/csd3s/
So inside That (or something similar) is what it takes to reference an otherwise non-accessible local variable in a function. | |||
|
feedback
|