Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function timesTwo(params) {
  2. return params * 2
  3. }
  4. timesTwo(4); // 8
  5.  
  6.  
  7. var timesTwo = params => params * 2
  8. timesTwo(4); // 8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement