Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const zero = num => num - num;
- // eager won't break this
- zero(random(10)); // zero(8) => 8 - 8
- // lazy could
- zero(random(10)); // zero(random(10)) => random(10) - random(10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement