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.
...