JSON is a notation, an example of serialization

This commit is contained in:
Kevin Leung 2020-03-23 10:23:39 +08:00 committed by GitHub
parent 9446601d8f
commit 185eccae3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@
Use `SharedPreferences` (Android) and `UserDefaults` (iOS) with React Native over a unified interface.
All data is stored as a string. If you need to support more complex data structures (e.g. JSON), use serialization/deserialization.
All data is stored as a string. If you need to support more complex data structures, use serialization/deserialization (e.g. JSON).
## Getting started