Skip to content

Instantly share code, notes, and snippets.

View harishtocode's full-sized avatar

harish harishtocode

  • Bold
  • noida
View GitHub Profile
@harishtocode
harishtocode / json-parse-remove-null.js
Created April 4, 2023 09:16
remove null properties from a nested json object
/*Remove null properties from a nested json object*/
function parse(input) {
if (
input == null ||
(Array.isArray(input) && input.length == 0) ||
JSON.stringify(input) == "{}"
) {
return null;
}