Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function wisePerson(wiseType, whatToSay)
  2. {
  3. return `A wise ${wiseType} once said: "${whatToSay}".`;
  4. wisePerson('goat', 'Hello world');
  5. }
  6. console.log(wisePerson('goat', 'Hello world'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement