js test if string is json code example
Example 1: check if the data can be parsed javascript
function isJson(str) {
try {
return JSON.parse(str);
} catch (e) {
return false;
}
}
Example 2: if json then parse
function isJson(str) {
try {
let value = JSON.parse(str);
return value
} catch (e) {
return str;
}
}