Guest User

Untitled

a guest
Mar 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function person(firstName, secondName, job, ...otherArguments) {
  2. console.log(firstName, secondName, job, otherArguments);
  3. console.log('---------------');
  4. }
  5.  
  6.  
  7. person("John");
  8. person("John", "Doe");
  9. person("John", "Doe", "dev");
  10.  
  11. person("John", "Doe", "dev", 100, "Good guy", "Married");
Add Comment
Please, Sign In to add comment