Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the meaning of the following line of code? const pi=3.14;
Home
ECMAScript
What is the meaning of the following line of code? const pi=3.14;
asked
Jan 21, 2020
in
ECMAScript
by
GeorgeBell
What is the meaning of the following line of code?
const pi=3.14;
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 21, 2020
by
GeorgeBell
Const turns variables into constants, and they can’t be changed.
...