Is there any tool to to create:
[ 'John', 'Sam', 'Marry' ]
from:
[ { name: 'John' }, { name: 'Sam' }, { name: 'Marry' } ]
?
|
Is there any tool to to create:
from:
? |
|||
|
|
|
Yeah, the
|
||||
|
The tool is called a for loop. A non jQuery solution.
|
|||
|
|
|
If you don't mind using Underscore.js (which consists of more utility functions), the
|
||||
|
|
Using for(...) as shown in a couple of the above answers works fine, but you also run the risk of adding members you don't want this way, or running into some errors when trying to grab the name property from a member that doesn't have that property. See: JavaScript "For ...in" with Arrays |
|||
|
|
|
|||
|
|
The above works without needing any libraries, and still works properly even if someone mucked with object prototypes |
|||
|
|