JSFiddle - React, Tailwind, and code Playground

by Sahin Deniz

JavaScript

let a = {
  b: 2,
  c: 3
};

delete a.b;

let d = a.c;

delete d;

console.log(a);