Guest User

Untitled

a guest
Oct 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const log = (...args) => console.log(...args);
  2.  
  3. log('This', 'is', 'useless');
  4. // 'This', 'is', 'useless'
  5.  
  6. const name = 'Bob';
  7. log`Hi ${name}! How are you?`;
  8. // ['Hi ', '! How are you?'], 'Bob'
Add Comment
Please, Sign In to add comment