Undefined

прилагательное 1) неопределённый, неустановленный, не получивший определения Например: undefined crime [юриспруденция] — преступление, состав которого не определён в нормах права Синоним(ы): vague Антоним(ы): determinate 2) неопределённый, не вполне отчётливый, неясный Например: He was kind of a blurry undefined figure in my mind. — Его образ был каким-то размытым, неясным в моём воображении. Синоним(ы): vague, dim

Большой англо-русский словарь

Undefined

неопределённый Например: undefined field — неопределённое поле

Англо-русский словарь компьютерных терминов

Undefined

неопределённый; произвольный

Англо-русский научно-технический словарь

Undefined

The value of a variable that has not been set or a function that does not return anything. In some programming languages, e.g. Perl, JavaScript, undefined is a named constant that can be used to explicitly set a variable or return undefined or can be passed as an actual argument. Other languages, e.g. Java, call it "null", but note that the null in relational database programming is subtly different. Many languages provide a built-in function to test whether an expression is undefined, e.g. Perl's defined() function. Attempting to operate on an undefined value, e.g. add it to a number or append it to a string, may either raise an error or result in the undefined value being converted (cast) to some appropriate value, e.g. false, zero or empty string, according to the type of expression. This definition is an example of a paradox.

Free Online Dictionary of Computing