fork download
  1. // when {
  2. // }
  3. function foo() {
  4. return {
  5. foo: 'bar'
  6. };
  7. }
  8.  
  9.  
  10. // when
  11. // {
  12. // }
  13. function bar() {
  14. return
  15. {
  16. foo: 'bar'
  17. }
  18. }
  19.  
  20. console.log(foo());
  21. console.log(bar());
Success #stdin #stdout 0.06s 10728KB
stdin
Standard input is empty
stdout
{ foo: 'bar' }
undefined