Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I use string argument input as a variable name in javascript?

Tags:

javascript

How can I use string argument input as a part of variable name in a Javascript? I want to do that because it seems to be tedious to define getter and setter for all the fields... while most of the fields have similar names.

For example,

var random = {
    this.input1_field : null,
    this.input2_field : null,
    set: function(name,field){
       this.name_field = field;   
    }
}

where I want name_field to be dynamic based on the input variable 'name'. (ex, name="input1" or name="input2" etc)

like image 733
user482594 Avatar asked Mar 05 '26 09:03

user482594


1 Answers

this[name + "_field"] = field

You can just pass in a string and use it.

this["input1_field"] === this.input1_field

like image 164
Raynos Avatar answered Mar 07 '26 22:03

Raynos



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!