Answers

Question and Answer:

  Home  Coding Standards

⟩ Explain Naming Convention Constants?

Description

Constants are “variables” that cannot be changed within a function- or script-body. The value will always be the same during script-execution.

Syntax

"AX_" + [PURPOSE] + {OPTIONAL}

If the constant name consists of more than one word those will be separated using an underscore.

Examples

· AX_AUT_VERSION

· AX_DEFAULT_URL

 209 views

More Questions for you: