1/11
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
Variable
JavaScript
Camel Case
camelCase
String
Snake Case
snake_case
Dynamic Website
Statement (Anweisung)
A syntactic unit of an imperative programming language that expresses some action to be carried out. A program written in such a language is formed by a sequence of one or more statements.
Function (Funktion)
A block of code that performs a specific task and can be reused throughout a program. It's like a mini-program within a larger program. Functions are essential for organizing code, making it easier to read, understand, and maintain.
Expression (Ausdruck)
A combination of values, variables, operators, and function calls that, when evaluated, produce a single result. Essentially, it's a piece of code that resolves to a value.

Constant (Konstante)
A value that is not altered by the program during normal execution. When associated with an identifier, a constant is said to be "named," although the terms "constant" and "named constant" are often used interchangeably.
Identifier (Identifikator)
A name used to refer to a specific element in a program, such as a variable, function, or class. These names help programmers and the compiler distinguish between different parts of the code.
Operator
Operator is a programming language construct that provides functionality that may not be possible to define as a user-defined function (i.e. sizeof in C) or has syntax different than a function (i.e. infix addition as in a+b).