Comment remplacer la chaîne vide par un non-défini
var ab = {
firstName : undefined,
lastName : undefined
}
let newJSON = JSON.stringify(ab, function (key, value) {return (value === "") ? undefined : value});
console.log(JSON.parse(newJSON))
gashigb