Read Time:30 Second
DART – Keywords
Keywords are predefined, reserved words used in programming that have special meanings to the compiler. Keywords are part of the syntax and they cannot be used as an identifier.
Wikipedia
Example:
var pi = 3.14;
Here, var
is a keyword!
These keywords are case-sensitive and cannot be used to name variables, classes, and functions.
The following table lists the Dart Keywords!:
In the next lesson, you will learn about Operators.
Average Rating