- How can i remove the key's with null values and form a new json.
- How can iterate this response.... where i want to display.. this key ==> corresponding value.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
For starters fix your javascript object as what you have posted is full of errors. Once you have a valid array:
then you could loop through it:
Demo. |
|||||
|
|
|
1: This will remove any falsey value i.e. Null, undefined or empty strings. You could specifically check for nulls though. Make sure you read up and understand what delete does, it gets a lot of people in trouble.
2: You can iterate all properties and values of objects like so:
|
|||
|
|
|
Deleting a property:
Iterating throw properties:
|
|||
|
|
|
|||
|
|