JSFiddle - React, Tailwind, and code Playground
by Alex
JavaScript
const mappe = new Map()
mappe.set('easy', 'works')
console.log(mappe.get('easy'))
mappe.set('medium', () => {
return "ok"
})
console.log(mappe.get('medium')())
by Alex
const mappe = new Map()
mappe.set('easy', 'works')
console.log(mappe.get('easy'))
mappe.set('medium', () => {
return "ok"
})
console.log(mappe.get('medium')())