<script> function sequence(x,y) { var result; sequence = function () { return result += y } return result = x; } for (var i=0; i<4; i++) {document.write(sequence(10,3) + '<br>')} </script>