Illustrates conversion to and from JSON.
Name:
Converted to JSON using JSON.stringify(val)
---
Converted Back to Javascript using eval("("+json+")"+)
---
age:
Converted to JSON using JSON.stringify(parseInt(val))
---
Converted Back to Javascript using eval("("+json+")"+)
---
Converted to JSON using JSON.stringify(parseAddressForm(val))
---
Converted Back to Javascript using eval("("+json+")"+)
---