can you tell me the all rules to declare the variable name
Can you tell me the all rules to declare the variable name
Following are the naming rules for variables:
- Variable names can be of 1 to 255 characters long.
- All variable names must begin with an alphabet or an underscore(_).
- After the first initial letter, variable names can also contain letters and numbers.
- Variable names are case sensitive.
- No spaces or special characters are allowed except underscore(_).
Hope, this would help.