Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const http=require('http');
  2. const fs=require('fs');
  3.  
  4. function f1( ()=>{console.log("three");})
  5. {
  6. console.log("two");
  7. }
  8.  
  9. const server=http.createServer((req,res)=>{
  10. console.log("one");
  11. f1();
  12.  
  13.  
  14. });
  15.  
  16.  
  17. server.listen(9800);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement