t453.py 148 B

123456789101112
  1. def isPrototypeOf(x):
  2. print x
  3. def toSource(x):
  4. print x
  5. def hasOwnProperty(x):
  6. print x
  7. isPrototypeOf(1)
  8. toSource(2)
  9. hasOwnProperty(3)