Jump to content

const?


spider_designs

Recommended Posts

<html><head><script type="text/javascript">const nochange='This should always be the same';function writeIt () {	document.writeln (nochange);}</script></head><body><input type="button" onclick="writeIt()" value="Write"></body></html>

how come any time I add a const statement to a script I get an error at the line of the const statement? also functions called from an event eg onload="test()" return an object expected error ( even if they are not related to the const statement).Core javascript guide says:You can create a read-only, named constant with the const keyword. The syntax of a constant identifier is the same as for a variable identifier: it must start with a letter or underscore and can contain alphabetic, numeric, or underscore characters. const prefix = '212'; spider

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...