79752744

Date: 2025-09-01 16:43:56
Score: 1
Natty:
Report link

1. Problem with null check

if (obj === 'null') { return null;} // null unchanged

✅ Fix:

if (obj === null) { return "null"; } // real null
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Rahul Mishra