Tagged Questions
9
votes
6answers
364 views
Why does local variable kill my global variable?
Sorry for this question, but this issue really screwed up my day.
The following Code alerts 10 as it should:
var globalId='10';
function check(){
alert(globalId);
}
check();
But this ...
6
votes
5answers
172 views
Is there a performance hit of replacing local variables with arguments in Javascript?
Is there any performance hit for writing a function such that local var statements are replaced with arguments? Example:
function howManyMatch(arr, pattern, /*ignored:*/ i, l, total) {
l = ...
3
votes
2answers
143 views
Javascript: object copy, global vars, and performance
I have a quite complicated question to ask :)
I am currently working on a html5 canvas game. The variables which are specific to a map of the game are in a separate file (let's call it game.js), ...
3
votes
1answer
319 views
Access private (local) variable inside a closure scope
I'm making a google chrome extension and trying to get reference of a local variable within a closure scope.
// The script model of the target website
// I can't change any code of these
function ...
3
votes
3answers
166 views
JavaScript: How to use dynamic local variables
How would I reference a dynamic local variable? I know how to accomplish this with a global variable scope; for example.
myPet = "dog";
alert(window["myPet"]); // Alerts "dog"
How would I ...
1
vote
2answers
112 views
Passing local variable with name of a global variable isn't possible in JS?
foo = "foobar";
var bar = function(){
var foo = foo || "";
return foo;
}
bar();`
This code gives a result empty string. Why cannot JS reassign a local variable with same name as a global ...
1
vote
3answers
260 views
Javascript - local scope objects not accessible from nested function
I am trying to have a function grab an object from a php file on another page. I'm using the jQuery ajax function to to do the json grab, which is working correctly. The issue is when I try to return ...
0
votes
6answers
102 views
Javascript: Change value of variable inside conditional inside function
I'm trying to reuse a complicated function, and it would work perfectly if I could change the value of a local variable that's inside a conditional inside that function.
To boil it down:
var func = ...
0
votes
6answers
89 views
How to redesign this PHP code without local variable?
I have such a function:
function get_title($keyword) {
$titles = array(
'p1' => 'Title 1',
'p2' => 'Title 2',
// ... other data
'pm' => 'Some other ...
0
votes
3answers
67 views
Problem with variable scope in javascript
Ok I am definitely puzzled, why this is not returning 6 in textarea. It doesn't return anything.
I figured that it has something to do with js scopes, but i cant figure it out.
<body>
...
0
votes
3answers
414 views
Programmatically get values of variables local to function in javascript?
Given:
function foo(){
var bar = "quux";
console.log(/*mystery code here*/);
}
I'm looking for code that when inserted into the comment would yield the value of bar. By way of illustration, ...
-1
votes
4answers
244 views
How can a local function variable be accessible in another function
var objectTest=
{
test1: function( )
{
val1 = 1;
},
// hows accessing the
test2: function( )
{
alert( val1 );
}
};
objectTest.test2( );