Tagged Questions
The undefined tag has no wiki summary.
226
votes
14answers
122k views
Detecting an undefined object property in JavaScript
What's the best way of checking if an object property in JavaScript is undefined?
Sorry, I initially said variable rather than object property. I believe the same == undefined approach doesn't work ...
97
votes
3answers
51k views
How can I check whether a variable is defined in JavaScript?
How to check whether a JavaScript variable defined in cross-browser way?
I ran into this problem when writing some JavaScript utilizing FireBug logging. I wrote some code like below:
function ...
91
votes
14answers
7k views
What are all the common undefined behaviour that a C++ programmer should know about?
Say like
a[i] = i++;
73
votes
7answers
65k views
How to check a not defined variable in javascript [closed]
Possible Duplicate:
Detecting an undefined object property in JavaScript
I wanted to check whether the variable is defined or not.
eg
alert( x );
Throws a not defined error
How can I ...
45
votes
3answers
36k views
How to unset a Javascript variable?
I have a global variable in Javascript (actually a window property, but I don't think it matters) which was already populated by a previous script but I don't want another script that will run later ...
30
votes
8answers
3k views
Why is there a `null` value in JavaScript?
In JavaScript, there are two values which basically say 'I don't exist' - undefined and null.
A property to which a programmer has not assigned anything will be undefined, but in order for a property ...
26
votes
6answers
5k views
Best way to check for “undefined” in JavaScript? [closed]
Possible Duplicates:
Detecting an undefined object property in JavaScript
How to check for undefined in javascript?
What is the most appropriate way to test if a variable is undefined in ...
25
votes
5answers
3k views
Setting a variable to undefined
I'm a bit confused about Javascript undefined & null.
Firstly what does if (!testvar) actually do? Does it test for undefined and null or just undefined?
Secondly, once a variable is defined can ...
21
votes
3answers
318 views
Javascript: How dangerous is it, really, to assume undefined is not overwritten?
Every time anyone mentions testing against undefined, it's pointed out that undefined is not a keyword so it could be set to "hello", so you should use typeof x == "undefined" instead. This seems ...
15
votes
9answers
547 views
When to check for undefined and when to check for null
[Bounty Edit]
I'm looking for a good explanation when you should set/use null or undefined and where you need to check for it. Basically what are common practices for these two and is really possible ...
13
votes
3answers
4k views
How to check for undefined or null variable in javascript
We are frequently using the following code pattern in our javascript code
if(typeof(some_variable) != 'undefined' && some_variable != null)
{
// do something with some_variable
}
and ...
12
votes
1answer
112 views
Undefined at the type level
Often when I'm playing with Haskell code, I stub things out with a type annotation and undefined.
foo :: String -> Int
foo = undefined
Is there a type-level "undefined" that I could use in a ...
12
votes
6answers
932 views
What is the difference between null and undefined in JavaScript?
I want to know what the difference is between null and undefined in JavaScript.
Put the best link here you can related to this topic in JavaScript.
12
votes
4answers
10k views
How to determine if variable is 'undefined' or 'null' [closed]
Possible Duplicate:
Detecting an undefined object property in JavaScript
How do I determine if variable is 'undefined' or 'null'. My code is as follows:
EmpName = $("div#esd-names ...
12
votes
4answers
360 views
When is it OK to use an undefined variable in perl with warnings enabled?
With warnings enabled, perl usually prints Use of uninitialized value $foo if $foo is used in an expression and hasn't been assigned a value, but in some cases it's OK, and the variable is treated as ...
11
votes
6answers
3k views
How to check null, undefined or blank variable in JavaScript
Is there a universal function to call to check for a variable to have value and ensure it's not undefined/null before trying to use it in JavaScript? I've got this code but not sure if it covers all ...
11
votes
6answers
722 views
variable === undefined vs. typeof variable === “undefined”
The jQuery Core Style Guidelines suggest two different ways to check whether a variable is defined.
Global Variables: typeof variable === "undefined"
Local Variables: variable === undefined
...
10
votes
6answers
5k views
Check if object exists in JavaScript
How do I verify the existence of an object in JavaScript?
The following works:
if (!null)
alert("GOT HERE");
But this fails:
if (!maybeObject)
alert("GOT HERE");
Error: maybeObject is not ...
10
votes
12answers
422 views
PHP and undefined variables strategy
I am a C++ programmer starting with PHP. I find that I lose most of debugging time (and my selfesteem!) due to undefined variables. From what I know the only way to deal with them is to watch the ...
10
votes
6answers
1k views
A question about union in C
I was reading about union in C from K&R, as far as I understood, a single variable in union can hold any one of the several types and if something is stored as one type and extracted as another ...
10
votes
7answers
4k views
JavaScript - Identify whether a property is defined and set to 'undefined', or undefined
Say I have the following code:
function One() {}
One.prototype.x = undefined;
function Two() {}
var o = new One();
var t = new Two();
o.x and t.x will both evaluate to undefined. ...
9
votes
3answers
179 views
Does this const initialization through const_cast have undefined behaviour?
According to my small tests this code works. But, does it have undefined behaviour? Modifying the const object through the use of const_cast resulted in run-time access violations in my previous ...
9
votes
3answers
2k views
Testing for undefined variables in Ruby a la JavaScript?
In JavaScript there's a useful way to test for a variable which has never been defined at any given point. For example, the following snippet of code will return true if the variable bob has not been ...
9
votes
5answers
18k views
Bash. Test for a variable unset, using a function
A simple Bash variable test goes:
${varName:? "${varName} is not defined"}
I'd like to re-use this, by putting it in a function.
How please?
Following fails
#
# Test a variable exists
tvar(){
...
9
votes
9answers
1k views
What are the common undefined behaviours that Java Programmers should know about
The same as this question but for java
Update
Based on the comments and responses of a few people, Its clear that Java has very little undefined behaviour.
So I'd like to ask as well what behaviour ...
8
votes
4answers
3k views
Returning const reference to local variable from a function
I have some questions on returning a reference to a local variable from a function:
class A
{
public:
A(int xx):x(xx)
{
printf("A::A()\n");
}
};
const A& getA1()
{
A a(5);
return ...
8
votes
9answers
804 views
Is it a good idea to use IEEE754 floating point NaN for values which are not set?
Is it a good idea to use IEEE754 floating point NaN (not-a-number) for values which are undefined for non-mathematical reasons?
In our case they are not yet set because the values have not been ...
7
votes
2answers
2k views
is there any function like string.isnullorempty() in javascript
I always (thing != undefined || thing != null)?...:...; check. Is there any method will return bool after this check in javascript or jquery ?
And how would you add this check in jquery as a ...
7
votes
5answers
667 views
Integer overflow in C: standards and compilers
Edited to include proper standard reference thanks to Carl Norum.
The C standard states
If an exceptional condition occurs during the evaluation of an expression (that is, if the result is not ...
7
votes
7answers
353 views
How is it legal to reference an undefined type inside a structure?
As part of answering another question, I came across a piece of code like this, which gcc compiles without complaint.
typedef struct {
struct xyz *z;
} xyz;
int main (void) {
return 0;
}
...
6
votes
4answers
209 views
JavaScript undefined replaced with null
In JavaScript undefined can be reassigned, so it is often advised to create a self executing function that assures undefined is actually undefined. As an alternative null and undefined are definitely ...
6
votes
2answers
273 views
Moose (Perl): convert undef to empty string or 0 rather than die()
I've received a lot of exceptions from QA due to incomplete data being fed to my Moose constructors. The attribute name is present in the constructor arguments, but the value is undef.
It's a fact of ...
6
votes
3answers
149 views
Why in Ruby, a || 1 will throw an error when `a` is undefined, but a = a || 1 will not?
When a is undefined, then a || 1 will throw an error, but a = a || 1 will not. Isn't that a little bit inconsistent?
irb(main):001:0> a
NameError: undefined local variable or method 'a' for ...
6
votes
1answer
885 views
What's the difference between undefined and window.undefined in JavaScript?
If a is undefined, this works:
if(window.a) {}
while this throws an error:
if(a)
Can someone explain why?
6
votes
3answers
455 views
var undefined = true;
I'm doing some experimenting with this malicious JavaScript line: var undefined = true;
Every uninitialized variable in JavaScript has the value of undefined which is just a variable that holds the ...
6
votes
2answers
2k views
Qt Application fails spectacularly
I'm trying to link a Qt application with its libraries and the linker (MinGW) spews hundreds of lines like the following, and I am unsure how to proceed.
cpp: undefined reference to ...
5
votes
4answers
97 views
best way to differentiate between untrue/unpassed args in Perl
I am trying to figure the best way to differeniate in Perl between cases where an argument has not been passed, and where an argument has been passed as 0, since they mean different things to me.
...
5
votes
4answers
168 views
Undefined reference to static function pointer member in c++, what am I doing wrong?
please consider these files:
p.h:
#ifndef _p_h_
#define _p_h_
class p{
public:
static void set_func(int(*)());
private:
static int (*sf)();
};
#endif
p.cpp:
#include "p.h"
#include ...
5
votes
1answer
271 views
Javascript array contains only undefined after initialization, not the given values
I thought I knew how to declare javascript arrays but in this script I am getting an infinite loop of undefined elements in the array.
I declare three arrays of numbers, two of which have multiple ...
5
votes
1answer
3k views
Problem with JSON in Internet Explorer 7
IE8/Chrome,FF work well but Internet Explorer 7 is giving me headaches.
I am trying to get numeric result for actual form
$(".checklist label").click(function () {
checkResults();
});
function ...
5
votes
2answers
4k views
JavaScript undefined check
I often see JavaScript code where a function may take in an "options" object and use it like:
var name = typeof options.name !== 'undefined' ? options.name : "Bob";
This seems like it would be ...
5
votes
1answer
784 views
How do you set a double value to a “non-value”
I have two double data elements in an object.
Sometimes they are set with a proper value and sometimes not. When the form field from which they values are received is not filled I want to set them to ...
5
votes
2answers
216 views
Undefined behavior on deleting char array trought void *
Is it correct that following yields undefined behavior:
void * something = NULL;
char * buffer = new char[10];
something = buffer;
buffer = NULL;
delete [] something; // undefined??
Do I first ...
5
votes
4answers
1k views
php claims my defined variable is undefined
My php is a little rusty but this is boggling my mind right now. I googled this and read all the stackoverflow questions I could find that looked related, but those all seemed to have legitimate ...
5
votes
9answers
12k views
FancyBox iframe returns parent.$ as undefined (using WordPress)
I'm trying to close FancyBox from within the iframe, but parent.$ is always undefined.
This is my iframe JavaScript:
<script type='text/javascript'
...
5
votes
5answers
961 views
Ruby forgets local variables during a while loop?
I'm processing a record-based text file: so I'm looking for a starting string which constitutes the start of a record: there is no end-of-record marker, so I use the start of the next record to ...
5
votes
6answers
6k views
When javascript returns null & undefined?
I have been using javascript for couple of years and never cared about the difference between null & undefined earlier, i always use undefined to validate the object existence.
But recently i ...
4
votes
1answer
137 views
Undefined method 'actions' for Formtastic::FormBuilder
I have rails 3.1.3 and formtastic 2.0.2.
I'm using the most basic form you can imagine:
<%= semantic_form_for @customer do |f| %>
<%= f.inputs %>
<%= f.actions %>
<% ...
4
votes
2answers
78 views
Why does undefined behave different than other variables?
I'm using Google Chrome 16.0.912.63 and have the following code:
__defineGetter__('x', function(){
console.log('In Getter: x'); return 1;
});
__defineGetter__('undefined', function(){
...
4
votes
2answers
1k views
Uncaught TypeError: Cannot call method 'toLowerCase' of undefined
I ran into a very vague error while doing some simple jQuery DOM manipulation.
The line that triggered the error is the following:
$(this).closest('tr').remove();
The error, as stated in the ...