Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function sequence(start, step) {
- if (start == undefined){
- start = 0;}
- if (step == undefined){
- step = 1;}
- var result = function(){
- return start;
- }
- return result;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement