Creating constants in JavaScript

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



How do you create a constant in JavaScript? I tried all of the
following and they didn't work:

static final var MY_CONSTANT = "Test";
static var MY_CONSTANT = "Test;
static const var MY_CONSTANT = "Test";
static const MY_CONSTANT = "Test";
const var MY_CONSTANT = "Test";
const MY_CONSTANT = "Test";

.