1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How you will add function as a property in a JavaScript object? Give an example.

Discussion in 'JavaScript' started by jessysmith1234, Oct 11, 2013.

  1. #1
    How you will add function as a property in a JavaScript object? Give an example.
     
    jessysmith1234, Oct 11, 2013 IP
  2. HuggyStudios

    HuggyStudios Well-Known Member

    Messages:
    724
    Likes Received:
    20
    Best Answers:
    26
    Trophy Points:
    165
  3. rehan.khalid.9235

    rehan.khalid.9235 Active Member

    Messages:
    78
    Likes Received:
    2
    Best Answers:
    1
    Trophy Points:
    85
    #3
    Its simple .

    example:-

    creating a Person Object

    var Person={
      age:0,
      name:null,
      initialize:function(){
          this.age=25;
          this.name='Rehan'
      }
    };
    
    Person.initialize();
    Code (markup):
     
    rehan.khalid.9235, Oct 19, 2013 IP
  4. miller.dain

    miller.dain Member

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    31
    #4
    +1
     
    miller.dain, Oct 20, 2013 IP