Answers for "How to see if something is JSOn JS"

PHP
8

if json valide js

function IsJsonString(str) {
    try {
        JSON.parse(str);
    } catch (e) {
        return false;
    }
    return true;
}
Posted by: Guest on April-10-2020

Code answers related to "How to see if something is JSOn JS"

Browse Popular Code Answers by Language