Guest User

Untitled

a guest
Jan 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9.  
  10. <script id="jsbin-javascript">
  11. //arrow function
  12. const printName = (name) => name
  13.  
  14.  
  15. console.log(printName("Bhrugs"));
  16. </script>
  17.  
  18.  
  19.  
  20. <script id="jsbin-source-javascript" type="text/javascript">//arrow function
  21. const printName = (name) => name
  22.  
  23.  
  24. console.log(printName("Bhrugs"));
  25.  
  26. </script></body>
  27. </html>
Add Comment
Please, Sign In to add comment