Consider var person=JSON.parse('{"name":"Alice","id",1234}').
How do I remove a key from the variable person? For example, how do I remove "name" completely, so that person becomes {"id":1234}?
Consider var person=JSON.parse('{"name":"Alice","id",1234}').
How do I remove a key from the variable person? For example, how do I remove "name" completely, so that person becomes {"id":1234}?