473,320 Members | 2,164 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Testing to see if a variable exists...

Hey Folks,

Anyone know how to test for the existance of a variable in javascript?

I'm looking for the equivalent of IsSet() from PHP. I'm having trouble
finding it.

thx

--
i.m.
The USA Patriot Act is the most unpatriotic act in American history.

Jul 20 '05 #1
12 101827
Ivan Marsh wrote:
Anyone know how to test for the existance of a variable in javascript?


Check the 'typeof' operator:

<script type="text/javascript">
alert( typeof foo );
if(typeof foo == "undefined") {
// do stuff...
}
</script>

It's a good idea, when learning this property, to iterate over many
js/html types, in different user agents, to check the returned value.
You might be surprised sometimes (especially for "null" in js, and HTML
elements in Mozilla/IE).
HTH
Yep.
Jul 20 '05 #2


Ivan Marsh wrote:
Anyone know how to test for the existance of a variable in javascript?

I'm looking for the equivalent of IsSet() from PHP. I'm having trouble
finding it.


Not quite the same as isset in PHP but the JavaScript way is usually
if (typeof varname != 'undefined') {
// use varName
}
However that approach doesn't allow you to distinguish whether a
variable has not been declared or has been declared but not intialized,
that is if you declare
var varname;
then
typeof varname
is still 'undefined'. But that usually doesn't bother you as you only
want to check whether something useful is stored in the variable.

--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #3
"Ivan Marsh" wrote on 11/11/2003:
Hey Folks,

Anyone know how to test for the existance of a variable in javascript?
I'm looking for the equivalent of IsSet() from PHP. I'm having trouble finding it.


Use this function:

function isSet( variable )
{
return( typeof( variable ) != 'undefined' );
}

It will work if a variable is defined, but not assigned to yet. For
example:

var a;
var b = 'used';

isSet( a ); // false
isSet( b ); // true

If you want to test for variables that have not been declared at all,
you have to test directly, or an error will occur. Continuing from
above:

if( typeof( c ) == 'undefined' )
{
// this will execute in this example
// c is not defined or has not been assigned to...
}
else
{
// c has been defined...
}

Mike

--
Michael Winter
M.Winter@[no-spam]blueyonder.co.uk (remove [no-spam] to reply)
Jul 20 '05 #4
> Anyone know how to test for the existance of a variable in javascript?

Runtime is not generally a good time to be checking that variables exist. It is
better to do it early with jslint. It produces a report that identifies
undeclared variables. It also reports declared but unused variables.

http://www.crockford.com/javascript/lint.html

Jul 20 '05 #5
"Michael Winter" <M.Winter@[no-spam]blueyonder.co.uk> wrote in message
news:Vd******************@news-text.cableinet.net...
<snip>
return( typeof( variable ) != 'undefined' );

<snip>

It is interesting that you have used parenthesise in the way you have in
the code above. They make typeof look like a function when it is an
operator that operates on an expression and return look like a function
call when it is a statement that may return an expression. That isn't
important for the execution of the code because JavaScript is very
tolerant of the presence (or absence) of white space, So:-

typeof(variable)

- is treated as if it was:-

typeof (variable)

- and - (variable) - is just a parenthesised expression. The parentheses
are serving no purpose so the effect is exactly the same as:-

typeof variable

While:-

return( ... );

- is treated as:-

return ( ... );

- and - ( ... ) - is another parenthesised expression, though in this
case parenthesising - typeof (variable ) != 'undefined' - would make it
clear that it is the result of evaluating the expression that is
returned and I would probably have done so myself (but I would have
placed a space before the "(").

No harmful consequences follow from the formulation of the original
code. Except possibly to blur the distinction between function calls and
the use of operators/statements, and maybe causing some confusion in the
minds of readers of the code.

Richard.
Jul 20 '05 #6
"Richard Cornford" wrote 11/11/2003:
"Michael Winter" <M.Winter@[no-spam]blueyonder.co.uk> wrote in message news:Vd******************@news-text.cableinet.net...
<snip>
return( typeof( variable ) != 'undefined' ); <snip>

It is interesting that you have used parenthesise in the way you

have in the code above. They make typeof look like a function when it is an
operator that operates on an expression and return look like a function call when it is a statement that may return an expression. That isn't important for the execution of the code because JavaScript is very
tolerant of the presence (or absence) of white space, So:-

typeof(variable)

- is treated as if it was:-

typeof (variable)

- and - (variable) - is just a parenthesised expression. The parentheses are serving no purpose so the effect is exactly the same as:-

typeof variable

While:-

return( ... );

- is treated as:-

return ( ... );

- and - ( ... ) - is another parenthesised expression, though in this case parenthesising - typeof (variable ) != 'undefined' - would make it clear that it is the result of evaluating the expression that is
returned and I would probably have done so myself (but I would have
placed a space before the "(").

No harmful consequences follow from the formulation of the original
code. Except possibly to blur the distinction between function calls and the use of operators/statements, and maybe causing some confusion in the minds of readers of the code.


I prefer to use parentheses wherever I can. I realise that typeof is
an operator, and is perfectly acceptable with, or without,
parentheses. I tend to surround all expressions and sub-expressions
with parentheses as I like not having to remember the operator
precedence table. I have enough to remember as it is, and not all
languages use the same precedence order. When I'm writing in C, C++
or Java, I even write return( true/false ), though I know it's not
necessary. It's part habit and part consistency.

Everyone has their own style, I suppose...

Mike

--
Michael Winter
M.Winter@[no-spam]blueyonder.co.uk (remove [no-spam] to reply)
Jul 20 '05 #7
On Tue, 11 Nov 2003 10:19:58 +0000, Douglas Crockford wrote:
Anyone know how to test for the existance of a variable in javascript?


Runtime is not generally a good time to be checking that variables
exist.


Yea, I know. What I was trying to do was get POST data easily into
JavaScript using PHP. Since the POST data isn't sent if the variable isn't
set I needed a way to check for unassigned variables. Instead I just
decided to add a default value if it's unassigned.

I originaly was doing:

print("<SCRIPT LANGUAGE='JavaScript'>\n");
foreach ($_POST as $key_var => $value_var) {
print("var " . $key_var . " = '" . $value_var . "';\n");
}
print("</SCRIPT>\n");

Which worked fine for everything that's posted. But if you try to use a
variable that wasn't assigned from post data it would crash that
javascript you were referencing it from.

This is what I ended up with:

function JSPostVar($postvar, $postvarval = "") {
print("<SCRIPT LANGUAGE='JavaScript'>\n");
if (IsSet($_POST[$postvar])) {
print("var " . $postvar . " = '" . $_POST[$postvar] . "';\n");
}
else {
print("var " . $postvar . " = '" . $postvarval . "';\n");
}
print("</SCRIPT>\n");
}

Maybe not as pretty as it could be but it serves its purpose.

--
i.m.
The USA Patriot Act is the most unpatriotic act in American history.

Jul 20 '05 #8
"Michael Winter" <M.Winter@[no-spam]blueyonder.co.uk> wrote in message
news:D5*******************@news-text.cableinet.net...
<snip>
I prefer to use parentheses wherever I can.
I bet that you wouldn't claim that if you stopped and thought about it
;-) Given how liberally you could insert parentheses into JavaScript
source code, especially as you can re-parenthesis any existing
parenthesised expression so inserting them "wherever you can" would
become recursive, you would be unlikely to ever manage to complete the
code for your first function.
I realise that typeof is an operator, and is perfectly
acceptable with, or without, parentheses. I tend to surround
all expressions and sub-expressions with parentheses as
I like not having to remember the operator precedence table.
I have enough to remember as it is, and not all languages use
the same precedence order. When I'm writing in C, C++ or Java,
I even write return( true/false ), though I know it's not
necessary. It's part habit and part consistency.
The parenthesising of (and within) expressions is not really the subject
of my quibble (and it is no more than that). I also do not bother to
memorise operator precedence in languages and instead use nested
parentheses to force (and express) my desired precedence (JavaScript's
automatic type conversion often makes that doubly desirable).

My comments were more aimed at the expression of the distinction between
a function call, in which the tradition is that the opening parenthesis
is not separated from the identifier or property accessor for the
function reference (even though it could be), and the nature of typeof
and void as operators and return as a statement. Which might be better
expressed by separating the expression from the operator/statement with
at least one space.

I mentioned it mostly because I often encounter people talking of "the
typeof function", "the void function" and (though very rarely) "the
return function". That is a misconception that could not easily arise
from reading the language documentation (or books on the subject) and I
suspect that it arises in the minds of authors new to JavaScript as a
result of seeing code that uses typeof (etc) in a function call-like
formulation.
Everyone has their own style, I suppose...


And so long as the resulting code executes nobody can stop you. But,
when posting in a group where some of the readers may reasonably be
expected to not be that experienced, would the cost of putting in the
odd extra space character to make code that represent function calls
distinct from code that is not a function call really be too much of an
inconvenience?

Richard.
Jul 20 '05 #9
"Richard Cornford" wrote on 11/11/2003:
"Michael Winter" <M.Winter@[no-spam]blueyonder.co.uk> wrote in message news:D5*******************@news-text.cableinet.net...
<snip>
I prefer to use parentheses wherever I can.
I bet that you wouldn't claim that if you stopped and thought about

it ;-) Given how liberally you could insert parentheses into JavaScript source code, especially as you can re-parenthesis any existing
parenthesised expression so inserting them "wherever you can" would
become recursive, you would be unlikely to ever manage to complete the code for your first function.
:p
I realise that typeof is an operator, and is perfectly
acceptable with, or without, parentheses. I tend to surround
all expressions and sub-expressions with parentheses as
I like not having to remember the operator precedence table.
I have enough to remember as it is, and not all languages use
the same precedence order. When I'm writing in C, C++ or Java,
I even write return( true/false ), though I know it's not
necessary. It's part habit and part consistency.


The parenthesising of (and within) expressions is not really the

subject of my quibble (and it is no more than that). I also do not bother to memorise operator precedence in languages and instead use nested
parentheses to force (and express) my desired precedence (JavaScript's automatic type conversion often makes that doubly desirable).

My comments were more aimed at the expression of the distinction between a function call, in which the tradition is that the opening parenthesis is not separated from the identifier or property accessor for the
function reference (even though it could be), and the nature of typeof and void as operators and return as a statement. Which might be better expressed by separating the expression from the operator/statement with at least one space.

I mentioned it mostly because I often encounter people talking of "the typeof function", "the void function" and (though very rarely) "the
return function". That is a misconception that could not easily arise from reading the language documentation (or books on the subject) and I suspect that it arises in the minds of authors new to JavaScript as a result of seeing code that uses typeof (etc) in a function call-like
formulation.
Everyone has their own style, I suppose...
And so long as the resulting code executes nobody can stop you. But,
when posting in a group where some of the readers may reasonably be
expected to not be that experienced, would the cost of putting in

the odd extra space character to make code that represent function calls
distinct from code that is not a function call really be too much of an inconvenience?


I see your point (I saw it the first time), and it's a good one. I'll
try to take it into consideration in future.

Mike

--
Michael Winter
M.Winter@[no-spam]blueyonder.co.uk (remove [no-spam] to reply)
Jul 20 '05 #10
"Ivan Marsh" <an*****@you.now> writes:
Yea, I know. What I was trying to do was get POST data easily into
JavaScript using PHP. Since the POST data isn't sent if the variable isn't
set I needed a way to check for unassigned variables. Instead I just
decided to add a default value if it's unassigned.

I originaly was doing:

print("<SCRIPT LANGUAGE='JavaScript'>\n");
foreach ($_POST as $key_var => $value_var) {
print("var " . $key_var . " = '" . $value_var . "';\n");
}
print("</SCRIPT>\n");


I recommend against adding variables dynamically, mostly because it
makes it harder to reason about the program.

If anything, I would make an object that is always created, and then
add the value as a property of that object. Javascript has methods for
checking whether a property is set, e.g.:
if ("propertyName" in objectRef) {...

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #11
On Tue, 11 Nov 2003 10:19:58 -0800, "Douglas Crockford"
<no****@laserlink.net> wrote:
Anyone know how to test for the existance of a variable in javascript?


Runtime is not generally a good time to be checking that variables exist. It is
better to do it early with jslint. It produces a report that identifies
undeclared variables. It also reports declared but unused variables.


Except of course that in an unknown execution environment where your
code can be modified before it's executed, runtime is the only time
you can ensure that it's been declared, any time earlier you're only
checking that the code you wrote - if it runs declares it, that's a
very different thing.

Jim.
--
comp.lang.javascript FAQ - http://jibbering.com/faq/

Jul 20 '05 #12
Yann-Erwan Perio wrote:
Ivan Marsh wrote:
Anyone know how to test for the existance of a variable in javascript?


Check the 'typeof' operator:

<script type="text/javascript">
alert( typeof foo );
if(typeof foo == "undefined") {
// do stuff...
}


Although there may be rare occasions where the above is useful, it is
better to "do stuff" if `foo' is _not_ undefined (i.e. typeof foo !=
"undefined"). The gauntlet usually *prevents* access to undefined
variables, objects and properties.
PointedEars
Jul 20 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Marcus | last post by:
I'm having a problem that is baffling me... say I set a session variable as so: $_SESSION = "default"; Now if I test the following two conditionals: if($_SESSION == "default") and
3
by: lamar_air | last post by:
I need an if statement to test if a variable exists in a pyton script eg. if var1 exists: do this else: do this
1
by: wg | last post by:
Hey, Can someone show my how to change the code below to check to see if a variable exists rather than if the variable contains an empty string. if (document.form.regionselection.value...
2
by: Lauchlan M | last post by:
I'm retrieving url variable information uses the Request.QueryString object, eg: if (Request.QueryString.HasKeys()) key { lblMyResult.Text = Request.QueryString; } else {
3
by: Shapper | last post by:
Hello, How to determine if a Session Variable exists? In Page_Load I need to check is Session("MyVar") Exists. If it doesn't exist then I created it and give it a value: Session("myVar") =...
3
by: Adam J Knight | last post by:
Hi all, I am trying to test to see if a Session variable exists. This was my initial attempt, and doesn't work int intInstructorID = (Session.ToString() == null ?...
10
by: nutso fasst | last post by:
Hi. Any way to do this from asp page in IIS4? Application.Contents.Remove is IIS 5+. Setting variable to empty string does not remove variable. thx, nf
3
by: Mike | last post by:
Hello, How do I check to see if a GET varaible exists? This is giving me an error message. if (isset !($_GET)) {die('You must Have a Key to get in'); } Thanks
3
by: zensunni | last post by:
In a perfect world, I wouldn't have to do this, but I'm at the mercy of event scripting for a program. there's an event that runs every so often that triggers an subroutine. I'd like to declare a...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.