Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
5answers
2k views

Enum declared outside class scope

I went to this interview for a software developer position and they gave me a test with some corner-case-code situations, with usually 4 options to choose. One of the questions had an enum declared ...
4
votes
2answers
227 views

Dictionary.ContainsKey misbehave c#

I've got a class Column public class Column { public int Id { get; private set; } public string Name { get; private set; } public EPersonalCharacteristicType Type { get; private set; } ...
3
votes
1answer
286 views

Why can't I pass self as a named argument to an instance method in Python?

This works: >>> def bar(x, y): ... print x, y ... >>> bar(y=3, x=1) 1 3 And this works: >>> class Foo(object): ... def bar(self, x, y): ... print x, ...