Make your own

Build your own online tool with just a few 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.
export const 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 },
]

export const make = (data) => {
  return [{ type: "json", label: "Result", value: data }]
}