Just feels like there's probably a nicer way.
var values = resp.split(':');
var delta = values[0]; var newvalue = values[1]; var admin = values[2];
|
Just feels like there's probably a nicer way.
| |||||||
feedback
|
|
I can only think of:
or as lonesomeday suggested:
| |||||||||||||||
feedback
|
|
In my opinion it's nicer not to repeat the
(With or without the linebreaks after the commas, and with or without aligning the equals signs.) But there's little else you can do to pretty it up. Unless you're willing to do something silly using a helper function like this:
(Which of course only works for global variables, though it would be easy enough to create properties on some local object for non-global scope.) | ||||
|
feedback
|
|
You could avoid using an explicit index, and just order the declarations accordingly. Could of course also be done with a single It is easier to change and expand, since you probably want to have the declaration in the order of appearance in the array anyway.
With a single statement:
| |||||||||||||
feedback
|
|
Use a nice little assign() function to associate values with keys in a new object. Then, the object is returned:
| |||||||||||
feedback
|
|
use for loop
| |||
|
feedback
|
|
New in JavaScript 1.7 - Ignoring some returned values:
| |||
|
feedback
|
|
To get rid of the array, you could try something like this:
Don't worry, I'm not expecting an accepted answer! :) Just trying to present another way of looking at things. | |||||||||||||
feedback
|