Guest User

Untitled

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