副作用の履歴

side effect

var global = 0;
function func(){
global++; // globalに副作用してる
}
func();