top of page

03 Variables

const keyword

The const keyword stands for constant. It is a variable qualifier that modifies the behavior of the variable, making a variable "read-only". This means that the variable can be used just as any other variable of its type, but its value cannot be changed.


Built-in Constants




© 2021 Odyssey Navigator. All rights reserved.

bottom of page