What is the correct way to declare a constant called PI with a value of 3.14159?
PI
let PI = 3.14159;
const PI = 3.14159;
const PI: 3.14159;
const PI == 3.14159;