0 votes
in ECMAScript by
What is the meaning of the following line of code?

const pi=3.14;

1 Answer

0 votes
by
Const turns variables into constants, and they can’t be changed.

Related questions

0 votes
asked Mar 9 in JavaScript by DavidAnderson
0 votes
asked Jan 21, 2020 in ECMAScript by GeorgeBell
...