SubhanUllah Posted October 5, 2022 Report Posted October 5, 2022 Try to parse it and catch any failure. There isn’t a more fool-proof way to check if JSON is valid than that. Something like this would work: function isValidJSON(s) { try { JSON.parse(s); return true; } catch (e) { } return false; } // Run a few test cases: console.log(`isValidJSON("4") = ${isValidJSON("4")}`); // prints true console.log(`isValidJSON("[4") = ${isValidJSON("[4")}`); // prints false console.log(`isValidJSON("[4]") = ${isValidJSON("[4]")}`); // prints true
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now