JSFiddle - React, Tailwind, and code Playground

by Malin Jayakody

JavaScript

let m = new Map();
m.set("x", 1);
console.log(m.get("x"));
m.set("x", undefined);
console.log(m.get("x"));