InterviewSolution
Saved Bookmarks
| 1. |
What are constants? |
|
Answer» You can CALL the immutable variables as constants. The value of a constant once defined remains the same and we cannot change it. This is the value that you introduce during the declaration. For EXAMPLE, const Y= 6.0. This value of Y would continue to be 6 THROUGHOUT and it won’t be CHANGED. |
|