I am working on a large project that contains many reference / look up type tables. This is maybe not the correct place to ask this question but I would like to find out the name that people give in English to these kind of tables:
The tables contain data such as status_code, status_type. They are preloaded and the data in them will probably never change.
Please excuse my not knowing this but ENglish is not my first language and I need to do a presentatation to talk about these kind of tables.


var Status = { Failure: 0, Success: 1 }, which would be called an enum (mostly because of how they're used in other languages, although JavaScript technically does not have enums as you can get away with things likeStatus.Failure = 2). – Bryan Jun 13 '11 at 7:18var Status = { Failure: { message: "Oh no!", value: 0 }, Success: /* ... */ }. There's no fixed name. – Bryan Jun 13 '11 at 7:27