Is there a way to pass a variable into a regex in jQuery/Javascript?
I wanna do something like:
var variable_regex = \"bar\";
var some_string = \"foo
Another way to include a variable in a string is through string interpolation. In JavaScript, you can insert or interpolate variables in strings using model literals:
var name = "Jack";
var id = 123321;
console.log(`Hello, ${name} your id is ${id}.`);
Note: be careful not to confuse quotation marks or apostrophes for the serious accent (`).
You can use in function:
function myPhrase(name, id){
return `Hello, ${name} your id is ${id}.`;
}