Modify ↓
Ticket #6147 (closed bug: invalid)
jQuery.parseJSON('{"name":NaN}'); handle failed
| Reported by: | xianke2009 | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.2 | |
| Component: | core | Version: | 1.4.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
var obj = jQuery.parseJSON('{"name":NaN}'); var obj = jQuery.parseJSON('{"name":Infinity}'); var obj = jQuery.parseJSON('{"name":-Infinity}');
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Infinity and NaN aren't valid JSON, see http://www.json.org/. Unfortunately there isn't a way to specify those values in JSON.