Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // one
  2. [].each(function (foo) {
  3. return foo.info ? "hello" : "hi";
  4. });
  5.  
  6. // two
  7. [].each(function (foo) {
  8. return foo.info ? "hello" : "hi";
  9. });
  10.  
  11. // three
  12. [].each(function (foo) {
  13. foo.info ? "hello" : "hi";
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement