Several characters must be escaped in JSON data to avoid any problems while reading them in JavaScript.
These characters are :
- ‘ single quote
- ” quote
- \ backslash
- all control characters like \n \t
How to render such a number -9,521,654.35 in JavaScript ?
Several characters must be escaped in JSON data to avoid any problems while reading them in JavaScript.
These characters are :
Sorting an array in JavaScript is done with <array>.sort()
sort() explanation in French
sort() explanation in English
It’s very easy and well explained in all JavasScript references.
When dealing with two-dimensional arrays or even worst with multi-dimensional arrays it’s another story.
Let me try to explain you thanks to clear examples.