### isValidJSON Checks if the provided argument is a valid JSON. Use `JSON.parse()` and a `try... catch` block to check if the provided argument is a valid JSON. ```js const isValidJSON = obj => { try{ JSON.parse(obj); return true; } catch(e){ return false; } } ``` ```js ```