Guest User

Untitled

a guest
Jun 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. js> print ("HELLO")
  2. HELLO
  3. js> var a = []
  4. js> a.foo = function () { print("HELLO") }
  5. function () {
  6. print("HELLO");
  7. }
  8. js> a.foo()
  9. HELLO
Add Comment
Please, Sign In to add comment