Answers for "adding a variable to a string without using + in javascript"

0

adding a variable to a string without using + in javascript

let a = 5;
let b = 10;
console.log(`The sum of a and b is ${a+b} and the multiplication is ${a*b}`); 
// The sum of a and b is 15 and the multiplication is 50
Posted by: Guest on March-26-2020

Code answers related to "adding a variable to a string without using + in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language