Answers for "input variable in string javascript"

10

how to put variable in string javascript

var myInt = 1
console.log(`my variable is ${myInt}`);
// my variable is 1
Posted by: Guest on July-27-2020
1

input variable in string javascript

const myvariable = "great";

const favePoem = "My text is."+myvariable+".";
Posted by: Guest on October-27-2020

Code answers related to "input variable in string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language