Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function hello(name : string) {
  2. console.log("Hello " + name);
  3. }
  4. const firstName : string = "bob";
  5.  
  6. hello(firstName);
  7. hello(firstName + " marley");
  8.  
  9. function concat(a : string, b : string) {
  10. return a + b;
  11. }
  12.  
  13. const wcs : string = concat("Wild", concat("Code", "School"));
  14. console.log(wcs);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement