Brainfuck interpreter (JavaScript)
Program
Description
This JavaScript program executes the given program written in the brainfuck programming language.
In the program code, characters other than the 8 brainfuck commands (<>+-[].,) are ignored. During execution, each memory cell is an unsigned 8-bit integer, and +/- wrap around on overflow. The memory stretches infinitely on the left and right sides; any integer is a valid memory index. The input is captured when the program is loaded, and cannot be changed afterward. Reading past the end of the input yields 0, which is indistinguishable from reading the byte value 0.
The source code is available.