Answers for "how to check string is json or not"

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 string is json or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language