Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
160 views
in Technique[技术] by (71.8m points)

javascript - how to make the string dynamically depending in the list?

I want to make the string dynamically using user input then i want to loop this to the list of first name for example:

I have a list of this firstname

let firstnameList = ["Jan", "Mark","Doe"]

then i have this message from user input

example GUI:

enter image description here

let message = "Hello {firstname}"

then the {fistname} in the string will be replace by the names on the list

example output

message = Hello Jan 
message = Hello Mark
message = Hello Doe
question from:https://stackoverflow.com/questions/65839060/how-to-make-the-string-dynamically-depending-in-the-list

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You want to loop through your array like so:

let firstnameList = ["Jan", "Mark", "Doe"];
for (let firstName of firstnameList) {
    //In here you can access the current first name by using the newly created variable firstName
    console.log('Hello ' + firstName);
    // Or
    console.log(`Hello ${firstName}`);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...