Guest User

Untitled

a guest
Jan 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const f = (x) => {
  2. return (
  3. x * x
  4. )
  5. }
  6. const g = (x) =>
  7. {
  8. return ( x
  9. * x
  10. )
  11. }
  12. console.log(f(2))
  13. console.
  14. log(g(4))
  15. console
  16. .log(g(8))
  17. // JSソースはどこで改行してもOK!、文末のセミコロンも不要
Add Comment
Please, Sign In to add comment