Guest User

Untitled

a guest
Nov 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var hello = "Hello!";
  2. function showHello() {
  3. //"use strict";
  4. var hello = "Hello there!";
  5. console.log("this => ", this);
  6. console.log("this.hello => ", this.hello);
  7. console.log("showHello hello => ", hello);
  8. }
  9. showHello();
Add Comment
Please, Sign In to add comment