Untitled


SUBMITTED BY: antoineh1

DATE: May 5, 2016, 12:43 p.m.

FORMAT: Text only

SIZE: 219 Bytes

HITS: 720

  1. <script>
  2. function MyObject(name){
  3. this.func = function(){
  4. }
  5. this.test = function(){
  6. func();
  7. }
  8. }
  9. var my = new MyObject();
  10. my.test();
  11. </script>

comments powered by Disqus