Guest User

Untitled

a guest
Mar 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. function person(firstName, secondName, job) {
  2. console.log(arguments);
  3. }
  4.  
  5.  
  6. person("John");
  7. person("John", "Doe");
  8. person("John", "Doe", "dev");
Add Comment
Please, Sign In to add comment