Advertisement
wrequiems

Untitled

Feb 6th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. "use strict";
  2.  
  3. var printASingleParameter = (a) => {
  4.     console.log(a);
  5. }
  6. printASingleParameter(100);
  7.  
  8. var printTwoStringsWithTwoSpacesBetween = (a, b) => {
  9.     console.log(a + "  " + b);
  10. }
  11. printTwoStringsWithTwoSpacesBetween("Emil", "Ray");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement