|
|
 |
| Javascript General Javascript discussions. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Javascript section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

May 6th, 2005, 05:07 AM
|
|
Authorized User
|
|
Join Date: Apr 2005
Location: , , United Kingdom.
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Problem with variable names
Hi All
I've never run into something like this before hope someone out there can help.
Heres the problem:
When I declare....
Code:
var 847ba3ec_369e_4a57_8475_83faffd1187e = 'as';
It throws a big fat javascript error...
But this line doesn't...
Code:
var bcfaeec0_3c34_4076_8abb_41d9b960c117 = 'as';
So why do some GUIDs work as var names but some dont? Is there some kind of variable naming thing I should know about?
Heres why Im doing it: (if you care ;P)
I am creating a menu tree from sections/categories but because sections might have the same name, they need to use a unique name for the variable. I have GUIDs as the ID in the tables and so was using that as the javascript variable name...
Thanks for any help!!
:D
|

May 6th, 2005, 05:11 AM
|
|
Authorized User
|
|
Join Date: Apr 2005
Location: , , United Kingdom.
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
*vomit*
You cant start a javascript variable with a numeric.
SUCH an idiot!
|

May 6th, 2005, 04:46 PM
|
 |
Wrox Author
|
|
Join Date: Dec 2004
Location: Peabody, MA, USA.
Posts: 191
Thanks: 0
Thanked 2 Times in 2 Posts
|
|
Though colorfully-worded, shenku is correct. Variable names can only begin with a letter, and underscore, or a dollar sign ($). To save yourself the trouble, you may just want to always prepend "GUID_" to the front of your variables, such as:
Code:
var GUID_bcfaeec0_3c34_4076_8abb_41d9b960c117 = 'as';
Nicholas C. Zakas
Author, Professional JavaScript for Web Developers (ISBN 0764579088)
http://www.nczonline.net/
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |