Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript
|
Javascript General Javascript discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 6th, 2005, 04:07 AM
Authorized User
 
Join Date: Apr 2005
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Default 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



 
Old May 6th, 2005, 04:11 AM
Authorized User
 
Join Date: Apr 2005
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Default

*vomit*

You cant start a javascript variable with a numeric.

SUCH an idiot!

 
Old May 6th, 2005, 03:46 PM
nzakas's Avatar
Wrox Author
 
Join Date: Dec 2004
Posts: 217
Thanks: 0
Thanked 5 Times in 5 Posts
Default

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/





Similar Threads
Thread Thread Starter Forum Replies Last Post
generate variable names dinamycally gcorcuera Classic ASP Basics 7 May 21st, 2007 09:53 AM
problem with session variable prabhatsriva01 ASP.NET 2.0 Professional 3 May 10th, 2007 11:41 AM
dynamic variable/object names TheBFJ Excel VBA 2 November 13th, 2006 07:11 AM
Session Variable Problem kwilliams ASP.NET 2.0 Basics 0 June 12th, 2006 11:56 AM
problem in showing froms by using names in VB.Net arctica82 Pro VB.NET 2002/2003 1 April 15th, 2005 03:15 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.