Tag: independent
-
Understanding JSON – Part 3, Writing
While reading from a JSON is done to bind the value to User Interface, writing is done prepare a data object that can be to an API. Here, again we’re going to write to a JSON via JavaScript, to not rely on any external dependency for now. stringify() is an in-built method in JavaScript, that…
-
Understanding JSON – Part 2, Reading
In Part 1, we understood what a JSON is and how it can be put to work to transfer data effectively. In this part, we’ll quickly understand how JSON Array or Objects can be read. For reading purposes, we’re going to use JavaScript because it doesn’t require any specific library or external code to read…