Advertisement
Guest User

Untitled

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