Skip to main content
Code Cinema
JavaScript

Define a function. Watch inputs flow through and output emerge.

function add(a, b) { return a + b; } add(3, 4);
Click here and start typing...
Function — reusable block of logic
inputs
Type the function definition to build the machine...