In programming, 'var' is a keyword used to declare variables in languages like JavaScript, indicating that the variable's type can change and its scope is limited to the function in which it is declared. It's a fundamental concept for managing data storage and manipulation within code, allowing for dynamic typing and function-level scoping.