Javascript adding setters in different scenarios











up vote
0
down vote

favorite












I am learning javascript(coming from php) and see there is multiple ways of class creation. Also learned about magic methods like get and set and i am wondering how they can be created in different scenarios (beside doing it when creating class with class keyword). Also i posted way of doing getter and setter in object literal and was wondering is there easier way. Here is code



//-------------------------------------------------------------------
//class
class create{
constructor(param1,param2){
this.name = param1;
this.name2 = param2;
}

fullname(){
console.log('...');
}

set name3(enteredValue){
this._name3 = enteredValue;
}
get name3(){
return this._name3;
}//This is how it is done in class
}
var obj2 = new create('test','test');

//-------------------------------------------------------------------
//object literal
var objLit = {
name: 'asas',
name2: 'assad'
}
Object.defineProperty(objLit, 'name3', {
get : function(){
return this._name3;
},
set : function(value){
this._name3 = value;
}
}); //This is how it is done in obj literal / Is there other way to do it in object?
//-------------------------------------------------------------------

//Factory Function
function createObj(param1, param2){
return{
name1: param1,
name2: param2,
fullName: function(){
console.log(this.name1+' '+this.name2);
}
}
}
var obj3 = createObj('Vukasin','Miljan');
//How to add setter in this scenario?


//-------------------------------------------------------------------

//Constructor function

function createObj2(param1,param2){
this.name1 = param1;
this.name2 = param2;
}
var obj4 = new createObj2('..','..');
//How to add setter in this scenario??









share|improve this question






















  • Your 2nd "object literal" code snippet already provides the solution for both your "Factory Function" and your "Constructor function" example. Make Object.defineProperty part of the factory and of the constructor. For the former you create objLit inside the factory, for the latter you are going to use the constructor's this context.
    – Peter Seliger
    Nov 22 at 15:29

















up vote
0
down vote

favorite












I am learning javascript(coming from php) and see there is multiple ways of class creation. Also learned about magic methods like get and set and i am wondering how they can be created in different scenarios (beside doing it when creating class with class keyword). Also i posted way of doing getter and setter in object literal and was wondering is there easier way. Here is code



//-------------------------------------------------------------------
//class
class create{
constructor(param1,param2){
this.name = param1;
this.name2 = param2;
}

fullname(){
console.log('...');
}

set name3(enteredValue){
this._name3 = enteredValue;
}
get name3(){
return this._name3;
}//This is how it is done in class
}
var obj2 = new create('test','test');

//-------------------------------------------------------------------
//object literal
var objLit = {
name: 'asas',
name2: 'assad'
}
Object.defineProperty(objLit, 'name3', {
get : function(){
return this._name3;
},
set : function(value){
this._name3 = value;
}
}); //This is how it is done in obj literal / Is there other way to do it in object?
//-------------------------------------------------------------------

//Factory Function
function createObj(param1, param2){
return{
name1: param1,
name2: param2,
fullName: function(){
console.log(this.name1+' '+this.name2);
}
}
}
var obj3 = createObj('Vukasin','Miljan');
//How to add setter in this scenario?


//-------------------------------------------------------------------

//Constructor function

function createObj2(param1,param2){
this.name1 = param1;
this.name2 = param2;
}
var obj4 = new createObj2('..','..');
//How to add setter in this scenario??









share|improve this question






















  • Your 2nd "object literal" code snippet already provides the solution for both your "Factory Function" and your "Constructor function" example. Make Object.defineProperty part of the factory and of the constructor. For the former you create objLit inside the factory, for the latter you are going to use the constructor's this context.
    – Peter Seliger
    Nov 22 at 15:29















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am learning javascript(coming from php) and see there is multiple ways of class creation. Also learned about magic methods like get and set and i am wondering how they can be created in different scenarios (beside doing it when creating class with class keyword). Also i posted way of doing getter and setter in object literal and was wondering is there easier way. Here is code



//-------------------------------------------------------------------
//class
class create{
constructor(param1,param2){
this.name = param1;
this.name2 = param2;
}

fullname(){
console.log('...');
}

set name3(enteredValue){
this._name3 = enteredValue;
}
get name3(){
return this._name3;
}//This is how it is done in class
}
var obj2 = new create('test','test');

//-------------------------------------------------------------------
//object literal
var objLit = {
name: 'asas',
name2: 'assad'
}
Object.defineProperty(objLit, 'name3', {
get : function(){
return this._name3;
},
set : function(value){
this._name3 = value;
}
}); //This is how it is done in obj literal / Is there other way to do it in object?
//-------------------------------------------------------------------

//Factory Function
function createObj(param1, param2){
return{
name1: param1,
name2: param2,
fullName: function(){
console.log(this.name1+' '+this.name2);
}
}
}
var obj3 = createObj('Vukasin','Miljan');
//How to add setter in this scenario?


//-------------------------------------------------------------------

//Constructor function

function createObj2(param1,param2){
this.name1 = param1;
this.name2 = param2;
}
var obj4 = new createObj2('..','..');
//How to add setter in this scenario??









share|improve this question













I am learning javascript(coming from php) and see there is multiple ways of class creation. Also learned about magic methods like get and set and i am wondering how they can be created in different scenarios (beside doing it when creating class with class keyword). Also i posted way of doing getter and setter in object literal and was wondering is there easier way. Here is code



//-------------------------------------------------------------------
//class
class create{
constructor(param1,param2){
this.name = param1;
this.name2 = param2;
}

fullname(){
console.log('...');
}

set name3(enteredValue){
this._name3 = enteredValue;
}
get name3(){
return this._name3;
}//This is how it is done in class
}
var obj2 = new create('test','test');

//-------------------------------------------------------------------
//object literal
var objLit = {
name: 'asas',
name2: 'assad'
}
Object.defineProperty(objLit, 'name3', {
get : function(){
return this._name3;
},
set : function(value){
this._name3 = value;
}
}); //This is how it is done in obj literal / Is there other way to do it in object?
//-------------------------------------------------------------------

//Factory Function
function createObj(param1, param2){
return{
name1: param1,
name2: param2,
fullName: function(){
console.log(this.name1+' '+this.name2);
}
}
}
var obj3 = createObj('Vukasin','Miljan');
//How to add setter in this scenario?


//-------------------------------------------------------------------

//Constructor function

function createObj2(param1,param2){
this.name1 = param1;
this.name2 = param2;
}
var obj4 = new createObj2('..','..');
//How to add setter in this scenario??






javascript class oop setter getter






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 at 14:37









Vukasin Sevo

124




124












  • Your 2nd "object literal" code snippet already provides the solution for both your "Factory Function" and your "Constructor function" example. Make Object.defineProperty part of the factory and of the constructor. For the former you create objLit inside the factory, for the latter you are going to use the constructor's this context.
    – Peter Seliger
    Nov 22 at 15:29




















  • Your 2nd "object literal" code snippet already provides the solution for both your "Factory Function" and your "Constructor function" example. Make Object.defineProperty part of the factory and of the constructor. For the former you create objLit inside the factory, for the latter you are going to use the constructor's this context.
    – Peter Seliger
    Nov 22 at 15:29


















Your 2nd "object literal" code snippet already provides the solution for both your "Factory Function" and your "Constructor function" example. Make Object.defineProperty part of the factory and of the constructor. For the former you create objLit inside the factory, for the latter you are going to use the constructor's this context.
– Peter Seliger
Nov 22 at 15:29






Your 2nd "object literal" code snippet already provides the solution for both your "Factory Function" and your "Constructor function" example. Make Object.defineProperty part of the factory and of the constructor. For the former you create objLit inside the factory, for the latter you are going to use the constructor's this context.
– Peter Seliger
Nov 22 at 15:29














1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










Adding getter/setter in the object:



let objLit = {
name: 'asas',
name2: 'assad',
get name3() {
return this._name3
},
set name3(value) {
this._name3 = value
}
}


In factory function:



function createObj(param1, param2) {
return {
set name1(value) {
param1 = value
},
set name2(value) {
param2 = value
},
get fullName() {
return `${param1} {param2}`
}
}
}





share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433247%2fjavascript-adding-setters-in-different-scenarios%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote



    accepted










    Adding getter/setter in the object:



    let objLit = {
    name: 'asas',
    name2: 'assad',
    get name3() {
    return this._name3
    },
    set name3(value) {
    this._name3 = value
    }
    }


    In factory function:



    function createObj(param1, param2) {
    return {
    set name1(value) {
    param1 = value
    },
    set name2(value) {
    param2 = value
    },
    get fullName() {
    return `${param1} {param2}`
    }
    }
    }





    share|improve this answer

























      up vote
      0
      down vote



      accepted










      Adding getter/setter in the object:



      let objLit = {
      name: 'asas',
      name2: 'assad',
      get name3() {
      return this._name3
      },
      set name3(value) {
      this._name3 = value
      }
      }


      In factory function:



      function createObj(param1, param2) {
      return {
      set name1(value) {
      param1 = value
      },
      set name2(value) {
      param2 = value
      },
      get fullName() {
      return `${param1} {param2}`
      }
      }
      }





      share|improve this answer























        up vote
        0
        down vote



        accepted







        up vote
        0
        down vote



        accepted






        Adding getter/setter in the object:



        let objLit = {
        name: 'asas',
        name2: 'assad',
        get name3() {
        return this._name3
        },
        set name3(value) {
        this._name3 = value
        }
        }


        In factory function:



        function createObj(param1, param2) {
        return {
        set name1(value) {
        param1 = value
        },
        set name2(value) {
        param2 = value
        },
        get fullName() {
        return `${param1} {param2}`
        }
        }
        }





        share|improve this answer












        Adding getter/setter in the object:



        let objLit = {
        name: 'asas',
        name2: 'assad',
        get name3() {
        return this._name3
        },
        set name3(value) {
        this._name3 = value
        }
        }


        In factory function:



        function createObj(param1, param2) {
        return {
        set name1(value) {
        param1 = value
        },
        set name2(value) {
        param2 = value
        },
        get fullName() {
        return `${param1} {param2}`
        }
        }
        }






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 22 at 15:52









        Nathan Xabedi

        434




        434






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53433247%2fjavascript-adding-setters-in-different-scenarios%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Contact image not getting when fetch all contact list from iPhone by CNContact

            count number of partitions of a set with n elements into k subsets

            A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks