Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Take this simple Test object and paste it into the console, you'll see that it says undefined. The object is working because it also prints 123, but what is the undefined about.

Test:

var Test = new (function(){
    return {
        get testing(){
            return "123";
        }
    }
});

console.log(Test.testing);

Console Output:

123
undefined
share|improve this question
@AnonymousDownvoter: Why the downvote? – Gerve Nov 10 '12 at 13:28

2 Answers

up vote 1 down vote accepted

That is the return value of console.log.

Try

console.log(1);

which gives

1
undefined

However, if you type just

Test.testing

that gives only

"123"
share|improve this answer
Thanks - Ahhh... yes, obviously. My mistake, this has been playing on my mind since yesterday. – Gerve Nov 10 '12 at 13:30

undefined is the return value from the console.log call

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.