Answers for "how to check if json api is properly formated"

1

check if the data can be parsed javascript

function isJson(str) {
            try {
                return JSON.parse(str);
            } catch (e) {
                return false;
            }
        }
Posted by: Guest on July-24-2020

Code answers related to "how to check if json api is properly formated"

Code answers related to "Javascript"

Browse Popular Code Answers by Language