Guest User

Untitled

a guest
Jan 20th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // Soy el global scope.
  2. var name = “Juancito”;
  3.  
  4. function sayHello(str) {
  5.  // Soy una función que crea su propio scope.
  6.  var hello = “Hola “ + str;
  7.  return hello;
  8. }
  9.  
  10. sayHello(name); // "Hola Juansito"
Add Comment
Please, Sign In to add comment