Make your own

Build your own online tool with just a few simple lines of JavaScript.

Loading takeymakey...
TakeyMakey code
Want this tool to do something else? Edit the code below and make it do whatever you want.
({
  take: [
    { key: "a", label: "A: Text", type: "text" },
    { key: "b", label: "B: Toggle", type: "toggle", value: true },
    { key: "c", label: "C: Number", type: "number", min: 1, max: 3 },
  ],
  make: (data) => {
    return [{ type: "json", label: "Result", value: data }]
  },
})