Advertisement
Guest User

Untitled

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