insert value into string javascript code example
Example 1: how to put variable in string javascript
var myInt = 1
console.log(`my variable is ${myInt}`);
Example 2: insert variable in typescript string
var myInt = 1
console.log("my variable is ${myInt}");
var myBool = true
console.log("my variable is ${(myBool) ? 'x' : 'y'}");
var myNumberA, myNumberB = 3;
console.log("my variable is ${myNumberA * myNumberB}");
Example 3: javascript join 2 variables into string
A = 'hello ';
B = 'world!';
console.log(A + B);