JSFiddle - React, Tailwind, and code Playground

by joplomacedo

JavaScript

var key = 3;

var obj = {
	[key]: () => {
		alert(3);
	}
}

obj[3]();