Really like that function.
$matches = array('12', 'watt');
list($value, $unit) = $matches;
Is there a Javascript equivalent of that?
|
Really like that function.
Is there a Javascript equivalent of that? |
||||
| show 6 more comments |
|
There is, but in "new" versions of Javascript: Destructuring assignment - Javascript 1.7. It's probably only supported in Mozilla-based browsers, and maybe in Rhino.
EDIT: actually it wouldn't surprise me if the V8 Javascript library (and thus Chrome) supports this. But don't count on it either :) |
|||||||||||||||||
|
|
try this:
|
|||
|
|
|
There is a experimental implementation of |
|||
|
|
|
CoffeeScript offers destructuring assignment with the syntax:
This is pretty much identical to the feature offered in very new JavaScript versions. However, CoffeeScript produces compiled JS that is compatible even with IE6's JavaScript engine, and therefore it's a good option if compatibility is vital. |
|||
|
|
var value = matches[0]; var unit = matches[1];– Mark Elliot Dec 23 '09 at 18:17list()to be useful and the above just yells object to mevar power = { 'unit': 'watt', 'amount': 12 }– Gordon♦ Dec 23 '09 at 18:29