Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function driversLicence5(passedTest) {
  2.  
  3. if (passedTest) {
  4. var firstName = ‘John’;
  5. var yearOfBirth = 1990;
  6.  
  7. console.log(firstName + ‘nacido en ’ + yearOfBirth + ‘ es oficialmente sobrio’);
  8. }
  9. }
  10.  
  11. driversLicence5(true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement